aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2019-03-31 22:35:39 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2019-03-31 22:35:39 -0700
commit59416923dcb3a756eaf532cc4259f2f6625c0762 (patch)
tree9082dae6616deac8fda432b7bfd80e4a52b6d9dc /pom.xml
parent79a129dd6327d932133d6b9a50190d3f4927bff9 (diff)
downloadtrackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.gz
trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.bz2
trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.zip
Convert project to gradle
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml14
1 files changed, 2 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index 9a5abbd84..b9f5965f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -224,23 +224,13 @@
<build>
<finalName>tracker-server</finalName>
<outputDirectory>target/classes</outputDirectory>
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>test</testSourceDirectory>
- <resources>
- <resource>
- <directory>src</directory>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </resource>
- </resources>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.0.0</version>
<configuration>
- <configLocation>checkstyle.xml</configLocation>
+ <configLocation>gradle/checkstyle.xml</configLocation>
</configuration>
<executions>
<execution>
@@ -374,7 +364,7 @@
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<configuration>
- <excludeFilterFile>findbugs.xml</excludeFilterFile>
+ <excludeFilterFile>gradle/findbugs.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>