Created new project for numbers and moved source as per the review

This commit is contained in:
sreekanth.nair 2019-12-28 20:07:32 +05:30
parent 97b100f496
commit fe48be1354
4 changed files with 35 additions and 0 deletions

7
java-numbers-3/README.md Normal file
View 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
View 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>