Fix for overriding skipTests variable. 50/75350/1
authorbiniek <lukasz.biniek@nokia.com>
Mon, 7 Jan 2019 09:26:38 +0000 (10:26 +0100)
committerbiniek <lukasz.biniek@nokia.com>
Mon, 7 Jan 2019 09:26:38 +0000 (10:26 +0100)
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>
epsdk-app-onap/pom.xml
vid-app-common/pom.xml

index fec6d0c..fb80e24 100755 (executable)
@@ -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>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <version>2.19.1</version>
                 <configuration>
-                    <skipTests>${skiptests}</skipTests>
                     <includes>
                         <include>**/Test*.java</include>
                         <include>**/*Test.java</include>
index 175c077..9a01c6c 100755 (executable)
@@ -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>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <version>2.19.1</version>
                 <configuration>
-                    <skipTests>${skiptests}</skipTests>
                     <includes>
                         <include>**/Test*.java</include>
                         <include>**/*Test.java</include>