|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<groupId>com.gmail.develop.jcant</groupId>
|
|
|
<artifactId>JDate</artifactId>
|
|
|
<version>1.9</version>
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<name>JDate</name>
|
|
|
<description>Date/Time routines</description>
|
|
|
<url>https://github.com/jcant/JDate.git</url>
|
|
|
|
|
|
<properties>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<java.version>1.8</java.version>
|
|
|
<maven.compiler.source>1.6</maven.compiler.source>
|
|
|
<maven.compiler.target>1.6</maven.compiler.target>
|
|
|
</properties>
|
|
|
<dependencies>
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
|
|
|
<dependency>
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
<version>5.7.0</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|