2018-11-03 21:49:10 +01:00
|
|
|
<?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>
|
|
|
|
|
2019-03-30 04:59:10 +01:00
|
|
|
<groupId>com.songoda.ultimatetimber</groupId>
|
2019-03-30 07:46:13 +01:00
|
|
|
<artifactId>UltimateTimber-Parent</artifactId>
|
2019-03-30 04:59:10 +01:00
|
|
|
<packaging>pom</packaging>
|
2018-11-19 02:49:30 +01:00
|
|
|
<version>maven-version-number</version>
|
2018-11-03 21:49:10 +01:00
|
|
|
|
2019-03-30 04:59:10 +01:00
|
|
|
<modules>
|
2019-03-30 07:46:13 +01:00
|
|
|
<module>UltimateTimber/Core</module>
|
2019-03-30 04:59:10 +01:00
|
|
|
<module>UltimateTimber-Adapter/Current</module>
|
|
|
|
<module>UltimateTimber-Adapter/Legacy</module>
|
|
|
|
<module>UltimateTimber/Plugin</module>
|
|
|
|
</modules>
|
|
|
|
|
2019-03-30 07:46:13 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>songoda-repo</id>
|
|
|
|
<url>http://repo.songoda.com/artifactory/private</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2018-11-03 21:49:10 +01:00
|
|
|
|
|
|
|
<build>
|
2019-03-30 04:59:10 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
2018-11-03 21:49:10 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-03-30 07:46:13 +01:00
|
|
|
<version>3.8.0</version>
|
2018-11-03 21:49:10 +01:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-02-16 06:32:12 +01:00
|
|
|
</project>
|