summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-04-05 12:12:11 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2024-04-05 12:12:46 +0200
commitafc48db2391cd2c803438fb936c02a4001b0e0e0 (patch)
tree6a9ecd692a47cf1c23ff9e93aea24ed8d8dc5bb8
parentac578c9e185cb47071a1e86b56ff286d66241386 (diff)
Use default compiler arguments for java.
-rw-r--r--client/pom.xml6
-rw-r--r--vespa-feed-client-api/pom.xml6
-rw-r--r--vespa-feed-client-cli/pom.xml6
-rw-r--r--vespa-feed-client/pom.xml6
4 files changed, 0 insertions, 24 deletions
diff --git a/client/pom.xml b/client/pom.xml
index d44c0820cac..4c08075fdee 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -35,12 +35,6 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>${vespaClients.jdk.releaseVersion}</release>
- <compilerArgs> <!-- Remove (to use default) when not compiling for 8 -->
- <arg>-Xlint:all</arg>
- <arg>-Xlint:-rawtypes</arg>
- <arg>-Xlint:-unchecked</arg>
- <arg>-Xlint:-serial</arg>
- </compilerArgs>
</configuration>
</plugin>
<plugin>
diff --git a/vespa-feed-client-api/pom.xml b/vespa-feed-client-api/pom.xml
index a6c47da84b8..d0e0e221fdd 100644
--- a/vespa-feed-client-api/pom.xml
+++ b/vespa-feed-client-api/pom.xml
@@ -42,12 +42,6 @@
<configuration>
<release>${vespaClients.jdk.releaseVersion}</release>
<showDeprecation>true</showDeprecation>
- <compilerArgs> <!-- Remove (to use default) when not compiling for 8 -->
- <arg>-Xlint:all</arg>
- <arg>-Xlint:-rawtypes</arg>
- <arg>-Xlint:-unchecked</arg>
- <arg>-Xlint:-serial</arg>
- </compilerArgs>
</configuration>
</plugin>
<plugin>
diff --git a/vespa-feed-client-cli/pom.xml b/vespa-feed-client-cli/pom.xml
index 4f0b77769de..de52abfddfa 100644
--- a/vespa-feed-client-cli/pom.xml
+++ b/vespa-feed-client-cli/pom.xml
@@ -53,12 +53,6 @@
<configuration>
<release>${vespaClients.jdk.releaseVersion}</release>
<showDeprecation>true</showDeprecation>
- <compilerArgs> <!-- Remove (to use default) when not compiling for 8 -->
- <arg>-Xlint:all</arg>
- <arg>-Xlint:-rawtypes</arg>
- <arg>-Xlint:-unchecked</arg>
- <arg>-Xlint:-serial</arg>
- </compilerArgs>
</configuration>
</plugin>
<plugin>
diff --git a/vespa-feed-client/pom.xml b/vespa-feed-client/pom.xml
index 1f4cd3949ab..78065920828 100644
--- a/vespa-feed-client/pom.xml
+++ b/vespa-feed-client/pom.xml
@@ -60,12 +60,6 @@
<goal>compile</goal>
</goals>
<configuration>
- <compilerArgs> <!-- Remove (to use default) when not compiling for 8 -->
- <arg>-Xlint:all</arg>
- <arg>-Xlint:-rawtypes</arg>
- <arg>-Xlint:-unchecked</arg>
- <arg>-Xlint:-serial</arg>
- </compilerArgs>
<release>${vespaClients.jdk.releaseVersion}</release>
<showDeprecation>true</showDeprecation>
</configuration>