diff options
author | Andy Clement <aclement@pivotal.io> | 2019-02-01 12:02:06 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-02-01 12:02:06 -0800 |
commit | 6311f723a282acee125eb467f55c1ba6cb10a04e (patch) | |
tree | 79915b14ff8446c9549ad38a64f62995221160d4 /testing-drivers/pom.xml | |
parent | 456c020a72ae6c83e84e5832210acb6d48eb7d3f (diff) | |
download | aspectj-6311f723a282acee125eb467f55c1ba6cb10a04e.tar.gz aspectj-6311f723a282acee125eb467f55c1ba6cb10a04e.zip |
Add module tests back in - but streamlined
Diffstat (limited to 'testing-drivers/pom.xml')
-rw-r--r-- | testing-drivers/pom.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing-drivers/pom.xml b/testing-drivers/pom.xml index 13e83f066..b3d8c9926 100644 --- a/testing-drivers/pom.xml +++ b/testing-drivers/pom.xml @@ -64,4 +64,29 @@ <type>test-jar</type> </dependency> </dependencies> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <testFailureIgnore>true</testFailureIgnore> +<excludes> +<exclude>**/*AjcTestSpecAsTest*</exclude> +</excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> +</build> </project> |