summaryrefslogtreecommitdiffstats
path: root/parent
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-12-08 12:38:26 +0100
committergjoranv <gv@oath.com>2017-12-08 12:38:26 +0100
commit29d8e64f44718ceaee34acc2303536bb13767893 (patch)
treee2ea1f1194fa21badb990165d7e1ff30e31c35a1 /parent
parente9b25c5b3589e9fff02d5f2165b6f82a8874a55b (diff)
Move plugin configuration back to parent.
Diffstat (limited to 'parent')
-rw-r--r--parent/pom.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/parent/pom.xml b/parent/pom.xml
index 23d95286de4..ea9d0d93b5b 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -69,6 +69,33 @@
<pluginManagement>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ <optimize>true</optimize>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <redirectTestOutputToFile>${test.hide}</redirectTestOutputToFile>
+ <systemPropertyVariables>
+ <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
+ </systemPropertyVariables>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <configuration>
+ <alwaysGenerateSurefireReport>false</alwaysGenerateSurefireReport>
+ <showSuccess>false</showSuccess>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
<version>${antlr.version}</version>