#BAEL-16646 moved modules java-dates-conversion and java-dates-string under core-java/core-java-datetime
This commit is contained in:
3
core-java-modules/core-java-datetime/README.md
Normal file
3
core-java-modules/core-java-datetime/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
## Java Date and Time
|
||||
|
||||
This module contains articles about date and time in Java.
|
||||
@@ -1,7 +1,7 @@
|
||||
=========
|
||||
|
||||
## Java Date/time conversion Cookbooks and Examples
|
||||
|
||||
This module contains articles about converting between Java date and time objects.
|
||||
|
||||
### Relevant Articles:
|
||||
- [Converting Between LocalDate and XMLGregorianCalendar](https://www.baeldung.com/java-localdate-to-xmlgregoriancalendar)
|
||||
- [Convert Time to Milliseconds in Java](https://www.baeldung.com/java-time-milliseconds)
|
||||
@@ -1,7 +1,7 @@
|
||||
=========
|
||||
|
||||
## Java Dates Parsing and Formatting Cookbooks and Examples
|
||||
|
||||
This module contains articles about parsing and formatting Java date and time objects.
|
||||
|
||||
### Relevant Articles:
|
||||
- [Check If a String Is a Valid Date in Java](https://www.baeldung.com/java-string-valid-date)
|
||||
- [RegEx for matching Date Pattern in Java](http://www.baeldung.com/java-date-regular-expressions)
|
||||
23
core-java-modules/core-java-datetime/pom.xml
Normal file
23
core-java-modules/core-java-datetime/pom.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<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.baeldung.exception.numberformat</groupId>
|
||||
<artifactId>core-java-datetime</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>core-java-datetime</name>
|
||||
|
||||
<parent>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>parent-java</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../parent-java</relativePath>
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
<module>java-dates-conversion</module>
|
||||
<module>java-dates-string</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
6
pom.xml
6
pom.xml
@@ -469,10 +469,8 @@
|
||||
<module>java-collections-maps</module>
|
||||
<module>java-collections-maps-2</module>
|
||||
<module>java-jdi</module>
|
||||
<!-- <module>java-dates</module>
|
||||
<module>java-dates</module>
|
||||
<module>java-dates-conversion</module>
|
||||
<module>java-dates-string</module> --> <!-- We haven't upgraded to java 9. Fixing in BAEL-10841 -->
|
||||
<!-- <module>core-java/core-java-datetime</module>--> <!-- We haven't upgraded to java 9. Fixing in BAEL-10841 -->
|
||||
<!--<module>java-dates</module>-->
|
||||
<!-- <module>java-ee-8-security-api</module> --> <!-- long running -->
|
||||
<module>java-lite</module>
|
||||
<module>java-math</module>
|
||||
|
||||
Reference in New Issue
Block a user