Add new maven module (#15723)
Co-authored-by: rajatgarg <rajatgarg@adobe.com>
This commit is contained in:
parent
120c2357ee
commit
ec8bf626eb
|
@ -0,0 +1,6 @@
|
||||||
|
## Java Date/time conversion Cookbooks and Examples
|
||||||
|
|
||||||
|
This module contains articles about converting between Java date and time objects.
|
||||||
|
|
||||||
|
### Relevant Articles:
|
||||||
|
|
|
@ -0,0 +1,57 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<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>
|
||||||
|
<artifactId>core-java-datetime-conversion-2</artifactId>
|
||||||
|
<version>${project.parent.version}</version>
|
||||||
|
<name>core-java-datetime-conversion-2</name>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>com.baeldung.core-java-modules</groupId>
|
||||||
|
<artifactId>core-java-modules</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>joda-time</groupId>
|
||||||
|
<artifactId>joda-time</artifactId>
|
||||||
|
<version>${joda-time.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
<version>${commons-lang3.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.msarhan</groupId>
|
||||||
|
<artifactId>ummalqura-calendar</artifactId>
|
||||||
|
<version>${ummalqura-calendar.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<finalName>core-java-datetime-conversion-2</finalName>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources</directory>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<joda-time.version>2.12.5</joda-time.version>
|
||||||
|
<ummalqura-calendar.version>2.0.2</ummalqura-calendar.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
</project>
|
|
@ -25,12 +25,6 @@
|
||||||
<artifactId>commons-lang3</artifactId>
|
<artifactId>commons-lang3</artifactId>
|
||||||
<version>${commons-lang3.version}</version>
|
<version>${commons-lang3.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.msarhan</groupId>
|
|
||||||
<artifactId>ummalqura-calendar</artifactId>
|
|
||||||
<version>${ummalqura-calendar.version}</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -51,7 +45,6 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<joda-time.version>2.12.5</joda-time.version>
|
<joda-time.version>2.12.5</joda-time.version>
|
||||||
<ummalqura-calendar.version>2.0.2</ummalqura-calendar.version>
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
|
@ -211,6 +211,7 @@
|
||||||
<module>core-java-collections-set</module>
|
<module>core-java-collections-set</module>
|
||||||
<module>core-java-date-operations-1</module>
|
<module>core-java-date-operations-1</module>
|
||||||
<module>core-java-datetime-conversion</module>
|
<module>core-java-datetime-conversion</module>
|
||||||
|
<module>core-java-datetime-conversion-2</module>
|
||||||
<module>core-java-httpclient</module>
|
<module>core-java-httpclient</module>
|
||||||
<module>java-native</module>
|
<module>java-native</module>
|
||||||
<module>java-rmi</module>
|
<module>java-rmi</module>
|
||||||
|
|
Loading…
Reference in New Issue