Skip to content

Commit 2eeecc0

Browse files
committed
build: add maven core-java-modules
1 parent ac3b4b3 commit 2eeecc0

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

core-java-modules/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>parent-modules</artifactId>
7+
<groupId>com.wdbyte</groupId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
<groupId>com.wdbyte.core-java-modules</groupId>
12+
<artifactId>core-java-modules</artifactId>
13+
<name>core-java-modules</name>
14+
<packaging>pom</packaging>
15+
16+
<properties>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
<maven.compiler.target>1.8</maven.compiler.target>
19+
</properties>
20+
21+
<modules>
22+
<module>core-java-performance</module>
23+
</modules>
24+
25+
</project>

0 commit comments

Comments
 (0)