aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiam Miller-Cushon <cushon@google.com>2021-12-28 13:06:54 -0800
committerJavac Team <javac-team+copybara@google.com>2021-12-28 13:07:44 -0800
commitcbc3f40cb585fb42eaf27ffbb4ee86565c46d060 (patch)
tree3757b78f57025a24b0793c6a99f21c479b840643
parentf9e53658f7493651756722f1088f8d489ba83eed (diff)
downloadturbine-cbc3f40cb585fb42eaf27ffbb4ee86565c46d060.tar.gz
Remove references to `com.google.errorprone:javac`
which is no longer required when running on JDK > 8. PiperOrigin-RevId: 418668223
-rw-r--r--pom.xml38
1 files changed, 0 insertions, 38 deletions
diff --git a/pom.xml b/pom.xml
index 40a7ba9..6f05c14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,6 @@
<properties>
<asm.version>9.2</asm.version>
- <javac.version>9+181-r4173-1</javac.version>
<guava.version>30.0-jre</guava.version>
<errorprone.version>2.9.0</errorprone.version>
<maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version>
@@ -91,12 +90,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>com.google.errorprone</groupId>
- <artifactId>javac</artifactId>
- <version>${javac.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
@@ -302,37 +295,6 @@
<profiles>
<profile>
- <id>java-8</id>
- <activation>
- <jdk>1.8</jdk>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <!-- put javac.jar on bootclasspath when executing tests -->
- <argLine>-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</argLine>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <fork>true</fork>
- <compilerArgs>
- <arg>-parameters</arg>
- <arg>-XDcompilePolicy=simple</arg>
- <arg>-Xplugin:ErrorProne</arg>
- <arg>-J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</arg>
- </compilerArgs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>sonatype-oss-release</id>
<build>
<plugins>