You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
4.4 KiB
116 lines
4.4 KiB
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>seng302</groupId>
|
|
<artifactId>team-7</artifactId>
|
|
<version>2.0</version>
|
|
</parent>
|
|
|
|
<packaging>jar</packaging>
|
|
<name>dedicatedServer</name>
|
|
<artifactId>dedicatedServer</artifactId>
|
|
<version>2.0</version>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>seng302</groupId>
|
|
<artifactId>racevisionGame</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<properties>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<manifestEntries>
|
|
<Main-Class>visualiser.app.App</Main-Class>
|
|
<X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK>
|
|
<X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK>
|
|
</manifestEntries>
|
|
</transformer>
|
|
</transformers>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
<version>2.5</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>3.6</version>
|
|
<configuration>
|
|
<linkXRef>true</linkXRef>
|
|
<targetJdk>${maven.compiler.target}</targetJdk>
|
|
<rulesets>
|
|
<ruleset>/rulesets/java/basic.xml</ruleset>
|
|
<ruleset>/rulesets/java/imports.xml</ruleset>
|
|
<ruleset>/rulesets/java/codesize.xml</ruleset>
|
|
<ruleset>/rulesets/java/design.xml</ruleset>
|
|
<ruleset>/rulesets/java/empty.xml</ruleset>
|
|
<ruleset>/rulesets/java/junit.xml</ruleset>
|
|
<ruleset>/rulesets/java/unusedcode.xml</ruleset>
|
|
</rulesets>
|
|
<includeXmlInSite>true</includeXmlInSite>
|
|
<sourceEncoding>utf-8</sourceEncoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.3</version>
|
|
<configuration>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<version>2.19.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.8.1</version>
|
|
<configuration>
|
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|