summaryrefslogtreecommitdiffstats
path: root/onboarding
diff options
context:
space:
mode:
authorvempo <vitaliy.emporopulo@amdocs.com>2017-09-18 18:42:12 +0300
committervempo <vitaliy.emporopulo@amdocs.com>2017-10-01 16:54:04 +0300
commita7a8911735fe1c25189e74c1b0e86d06f15b08b7 (patch)
tree90b75b2da1445cf3e0d22c7ceb5e9358dfd2640b /onboarding
parentd3f06f1f2d9ee5824b7271e33330ee1223f087fe (diff)
Fixed build and version of build-tools
Declared PMD dependencies under PMD Maven plugin. Build-tools are now part of the onboarding profile. Version is now aligned with the project version. Change-Id: Ibba68c83b7a888c2adc39f9915de0a4003c63c0f Issue-ID: SDC-348 Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'onboarding')
-rw-r--r--onboarding/pom.xml13
1 files changed, 12 insertions, 1 deletions
diff --git a/onboarding/pom.xml b/onboarding/pom.xml
index b49b7801df..7c9b6267fd 100644
--- a/onboarding/pom.xml
+++ b/onboarding/pom.xml
@@ -96,7 +96,8 @@
<zusammen.version>0.2.0</zusammen.version>
<zusammen-state-store.version>0.2.1</zusammen-state-store.version>
<skipSA>true</skipSA>
- <build.tools.version>1.1.0-SNAPSHOT</build.tools.version>
+ <pmd.version>5.8.1</pmd.version>
+ <build.tools.version>${project.version}</build.tools.version>
</properties>
<build>
@@ -147,6 +148,16 @@
<artifactId>build-tools</artifactId>
<version>${build.tools.version}</version>
</dependency>
+ <dependency>
+ <groupId>net.sourceforge.pmd</groupId>
+ <artifactId>pmd-core</artifactId>
+ <version>${pmd.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.pmd</groupId>
+ <artifactId>pmd-java</artifactId>
+ <version>${pmd.version}</version>
+ </dependency>
</dependencies>
</plugin>
</plugins>