largeRCRF-Java/pom.xml
Joel Therrien d7cdc9f6e7 Split into two Maven modules
One for the library (same as before),
the other for the executable part.
2019-07-03 09:37:19 -07:00

21 lines
564 B
XML

<?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>
<!-- parent pom -->
<groupId>ca.joeltherrien</groupId>
<artifactId>largeRCRF</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- sub modules -->
<modules>
<module>library</module>
<module>executable</module>
</modules>
</project>