Sleds/configuration/pom.xml

96 lines
2.7 KiB
XML
Raw Normal View History

2025-03-13 21:28:38 +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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.sequencelogic</groupId>
<artifactId>masterbuild</artifactId>
<version>2.3.0</version>
<!-- relative path must be specified to pick up parent pom changes, otherwise
the parent POM must first be installed in the local repo -->
<relativePath>../masterbuild</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>configuration</artifactId>
<name>configuration</name>
<description>The place in which servers get their infomation</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.dt</groupId>
<artifactId>dtcore</artifactId>
<version>1.1.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<resources>
</resources>
<plugins>
<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<configuration>
<mainClass>com.sequencelogic.serverconfig.ConfigService</mainClass>
<filename>configuration-one-jar.jar</filename>
</configuration>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- PIT Test Coverage/Mutation Testing -->
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.1.9</version>
<configuration>
<targetClasses>
<param>com.sequencelogic.serverconfig*</param>
</targetClasses>
<excludedClasses>
<!-- <param>com.sequencelogic.sleds.models*</param> -->
</excludedClasses>
<targetTests>
<param>com.sequencelogic.serverconfig*</param>
</targetTests>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.1.9</version>
<reportSets>
<reportSet>
<reports>
<report>report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>