Created new project for numbers and moved source as per the review
This commit is contained in:
parent
97b100f496
commit
fe48be1354
7
java-numbers-3/README.md
Normal file
7
java-numbers-3/README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
## Java Number Cookbooks and Examples
|
||||||
|
|
||||||
|
This module contains articles about numbers in Java.
|
||||||
|
|
||||||
|
### Relevant Articles
|
||||||
|
- [Convert Double to Long in Java]s
|
||||||
|
- More articles: [[<-- prev]](/../java-numbers)
|
28
java-numbers-3/pom.xml
Normal file
28
java-numbers-3/pom.xml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<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>java-numbers-3</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<name>java-numbers-3</name>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>com.baeldung</groupId>
|
||||||
|
<artifactId>parent-java</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<relativePath>../parent-java</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<finalName>java-numbers-3</finalName>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources</directory>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
0
java-numbers-3/src/test/java/com/baeldung/.gitkeep
Normal file
0
java-numbers-3/src/test/java/com/baeldung/.gitkeep
Normal file
Loading…
x
Reference in New Issue
Block a user