ChromaCore/pom.xml

58 lines
2 KiB
XML
Raw Permalink Normal View History

2019-10-20 18:48:24 +00:00
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.TBMCPlugins</groupId>
2020-02-04 16:39:18 +00:00
<artifactId>ChromaCore</artifactId>
2019-10-20 18:48:24 +00:00
<packaging>pom</packaging>
<version>master-SNAPSHOT</version>
<properties>
<lombok.version>1.18.12</lombok.version>
</properties>
2020-02-04 16:39:18 +00:00
<name>Chroma Parent</name>
2019-10-20 18:48:24 +00:00
<modules>
<module>CorePOM</module>
2020-02-04 16:39:18 +00:00
<module>Chroma-Core</module>
2019-10-20 18:48:24 +00:00
<module>ButtonProcessor</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>8</release>
2019-10-20 18:48:24 +00:00
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader> <!-- https://stackoverflow.com/a/53012553/2703239 -->
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
2019-10-20 18:48:24 +00:00
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
2019-10-20 18:48:24 +00:00
</dependencies>
</project>