diff --git a/common/sketch/pom.xml b/common/sketch/pom.xml index 6b81fc2b2b040dd2583a8e40b5f131a63e32db0f..ca929d8f253d7e13089b00c4118d62be7808a3ec 100644 --- a/common/sketch/pom.xml +++ b/common/sketch/pom.xml @@ -69,17 +69,6 @@ </javacArgs> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.6.1</version> - <configuration> - <compilerArgs combine.children="append"> - <!-- This option is needed to suppress warnings from sun.misc.Unsafe usage --> - <arg>-XDignore.symbol.file</arg> - </compilerArgs> - </configuration> - </plugin> </plugins> </pluginManagement> </build> diff --git a/common/unsafe/pom.xml b/common/unsafe/pom.xml index 680d0413b16169cf95e6615adc77e390c7ec101b..772b0ef82f01c1b336ab6c1f630a108ee7ade97b 100644 --- a/common/unsafe/pom.xml +++ b/common/unsafe/pom.xml @@ -106,17 +106,6 @@ </javacArgs> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.6.1</version> - <configuration> - <compilerArgs combine.children="append"> - <!-- This option is needed to suppress warnings from sun.misc.Unsafe usage --> - <arg>-XDignore.symbol.file</arg> - </compilerArgs> - </configuration> - </plugin> </plugins> </pluginManagement> </build> diff --git a/pom.xml b/pom.xml index c24334333d687ce97cdf6845c0c02ce48a845785..589c7afe1e5f99575d7207a6e57f07f44e2b48bb 100644 --- a/pom.xml +++ b/pom.xml @@ -1972,14 +1972,12 @@ </execution> <execution> <id>scala-compile-first</id> - <phase>process-resources</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>scala-test-compile-first</id> - <phase>process-test-resources</phase> <goals> <goal>testCompile</goal> </goals> @@ -2022,14 +2020,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> - <source>${java.version}</source> - <target>${java.version}</target> - <encoding>UTF-8</encoding> - <maxmem>1024m</maxmem> - <fork>true</fork> - <compilerArgs> - <arg>-Xlint:all,-serial,-path</arg> - </compilerArgs> + <skipMain>true</skipMain> <!-- skip compile --> + <skip>true</skip> <!-- skip testCompile --> </configuration> </plugin> <plugin>