aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pom.xml39
1 files changed, 37 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 31ba5609f..ec1219d7b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,6 +10,7 @@
<url>https://www.traccar.org</url>
<properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty.version>9.2.13.v20150730</jetty.version>
</properties>
@@ -95,7 +96,6 @@
</dependencies>
<build>
-
<finalName>tracker-server</finalName>
<outputDirectory>target/classes</outputDirectory>
<sourceDirectory>src</sourceDirectory>
@@ -176,7 +176,42 @@
</executions>
</plugin>
</plugins>
-
</build>
+
+ <reporting>
+ <plugins>
+ <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>
+ <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-checkstyle-plugin</artifactId>
+ <version>2.16</version>
+ <configuration>
+ <configLocation>checkstyle.xml</configLocation>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>3.0.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ <version>3.5</version>
+ </plugin>
+ </plugins>
+ </reporting>
</project>