aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbiniek <lukasz.biniek@nokia.com>2019-01-07 10:26:38 +0100
committerbiniek <lukasz.biniek@nokia.com>2019-01-07 10:26:38 +0100
commit143784a849ece4fc35cc290e33f829b72bf1fc79 (patch)
treeb101cca463b60ba0961f946960104cd54b84a7cc
parent5ec29ff5e3864f1ba6ecac71f8bffbefa400cf27 (diff)
Fix for overriding skipTests variable.
Before fix skipTests was overriden by variable skiptests. That required nonstandard flag to disable tests. Change-Id: I412c634ebb1c1b34d07f6caa6afb3501414e0a22 Issue-ID: VID-368 Signed-off-by: biniek <lukasz.biniek@nokia.com>
-rwxr-xr-xepsdk-app-onap/pom.xml3
-rwxr-xr-xvid-app-common/pom.xml3
2 files changed, 0 insertions, 6 deletions
diff --git a/epsdk-app-onap/pom.xml b/epsdk-app-onap/pom.xml
index fec6d0cc1..fb80e2409 100755
--- a/epsdk-app-onap/pom.xml
+++ b/epsdk-app-onap/pom.xml
@@ -22,8 +22,6 @@
<hibernate.version>4.3.11.Final</hibernate.version>
<!-- Skip assembling the zip; assemble via mvn -Dskipassembly=false .. -->
<skipassembly>true</skipassembly>
- <!-- Tests usually require some setup that maven cannot do, so skip. -->
- <skiptests>false</skiptests>
<nexusproxy>https://nexus.onap.org</nexusproxy>
<snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
<releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
@@ -131,7 +129,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
- <skipTests>${skiptests}</skipTests>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>
diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml
index 175c07711..9a01c6cce 100755
--- a/vid-app-common/pom.xml
+++ b/vid-app-common/pom.xml
@@ -23,8 +23,6 @@
<hibernate.version>4.3.11.Final</hibernate.version>
<!-- Skip assembling the zip by default -->
<skipassembly>true</skipassembly>
- <!-- Tests usually require some setup that maven cannot do, so skip. -->
- <skiptests>false</skiptests>
<nexusproxy>https://nexus.onap.org</nexusproxy>
<snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
<releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
@@ -157,7 +155,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
- <skipTests>${skiptests}</skipTests>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>