diff options
| -rw-r--r-- | eaaf_core/pom.xml | 22 | 
1 files changed, 22 insertions, 0 deletions
| diff --git a/eaaf_core/pom.xml b/eaaf_core/pom.xml index 719a1989..eedd2b71 100644 --- a/eaaf_core/pom.xml +++ b/eaaf_core/pom.xml @@ -1,3 +1,5 @@ +<!-- + -->  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <parent> @@ -108,7 +110,27 @@            <source>1.8</source>            <target>1.8</target>          </configuration> +        <executions> +        	<execution> +        		<goals> +        			<goal>compile</goal> +        			<goal>testCompile</goal> +        		</goals> +        	</execution> +        </executions>        </plugin> +      <plugin> +    	<groupId>org.apache.maven.plugins</groupId> +    	<artifactId>maven-jar-plugin</artifactId> +    	<version>3.1.0</version> +    	<executions> +        	<execution> +            	<goals> +                	<goal>test-jar</goal> +            	</goals> +        	</execution> +    	</executions> +	  </plugin>        <!-- enable co-existence of testng and junit -->  			<plugin> | 
