Skip to content

Commit 094bc73

Browse files
committed
chore: Try to keep the parent
1 parent 3db32f8 commit 094bc73

1 file changed

Lines changed: 46 additions & 47 deletions

File tree

dashboard/pom.xml

Lines changed: 46 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<version>1.5.15</version>
1010
<relativePath/>
1111
</parent>
12-
<groupId>com.google.cloud.tools</groupId>
1312
<artifactId>google-cloud-bom-dashboard</artifactId>
1413
<version>0.0.1-SNAPSHOT</version>
1514

@@ -31,10 +30,10 @@
3130
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3231
<maven.compiler.source>1.8</maven.compiler.source>
3332
<maven.compiler.target>1.8</maven.compiler.target>
34-
<maven.version>3.9.11</maven.version>
33+
<!-- <maven.version>3.9.11</maven.version>-->
3534

3635
<guava.version>33.5.0-jre</guava.version>
37-
<error-prone.version>2.41.0</error-prone.version>
36+
<!-- <error-prone.version>2.41.0</error-prone.version>-->
3837
</properties>
3938

4039
<dependencyManagement>
@@ -123,50 +122,50 @@
123122
</dependency>
124123
</dependencies>
125124

126-
<profiles>
127-
<profile>
128-
<id>error-prone</id>
129-
<activation>
130-
<!-- errorprone requires >= jdk17 -->
131-
<jdk>[17,)</jdk>
132-
</activation>
133-
<build>
134-
<plugins>
135-
<plugin>
136-
<groupId>org.apache.maven.plugins</groupId>
137-
<artifactId>maven-compiler-plugin</artifactId>
138-
<configuration>
139-
<fork>true</fork>
140-
<source>8</source>
141-
<target>8</target>
142-
<compilerArgs>
143-
<arg>-XDcompilePolicy=simple</arg>
144-
<arg>--should-stop=ifError=FLOW</arg>
145-
<arg>-Xplugin:ErrorProne</arg>
146-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
147-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
148-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>
149-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg>
150-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg>
151-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg>
152-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg>
153-
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg>
154-
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
155-
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
156-
</compilerArgs>
157-
<annotationProcessorPaths>
158-
<path>
159-
<groupId>com.google.errorprone</groupId>
160-
<artifactId>error_prone_core</artifactId>
161-
<version>${error-prone.version}</version>
162-
</path>
163-
</annotationProcessorPaths>
164-
</configuration>
165-
</plugin>
166-
</plugins>
167-
</build>
168-
</profile>
169-
</profiles>
125+
<!-- <profiles>-->
126+
<!-- <profile>-->
127+
<!-- <id>error-prone</id>-->
128+
<!-- <activation>-->
129+
<!-- &lt;!&ndash; errorprone requires >= jdk17 &ndash;&gt;-->
130+
<!-- <jdk>[17,)</jdk>-->
131+
<!-- </activation>-->
132+
<!-- <build>-->
133+
<!-- <plugins>-->
134+
<!-- <plugin>-->
135+
<!-- <groupId>org.apache.maven.plugins</groupId>-->
136+
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
137+
<!-- <configuration>-->
138+
<!-- <fork>true</fork>-->
139+
<!-- <source>8</source>-->
140+
<!-- <target>8</target>-->
141+
<!-- <compilerArgs>-->
142+
<!-- <arg>-XDcompilePolicy=simple</arg>-->
143+
<!-- <arg>&#45;&#45;should-stop=ifError=FLOW</arg>-->
144+
<!-- <arg>-Xplugin:ErrorProne</arg>-->
145+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>-->
146+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>-->
147+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>-->
148+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg>-->
149+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg>-->
150+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg>-->
151+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg>-->
152+
<!-- <arg>-J&#45;&#45;add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg>-->
153+
<!-- <arg>-J&#45;&#45;add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>-->
154+
<!-- <arg>-J&#45;&#45;add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>-->
155+
<!-- </compilerArgs>-->
156+
<!-- <annotationProcessorPaths>-->
157+
<!-- <path>-->
158+
<!-- <groupId>com.google.errorprone</groupId>-->
159+
<!-- <artifactId>error_prone_core</artifactId>-->
160+
<!-- <version>${error-prone.version}</version>-->
161+
<!-- </path>-->
162+
<!-- </annotationProcessorPaths>-->
163+
<!-- </configuration>-->
164+
<!-- </plugin>-->
165+
<!-- </plugins>-->
166+
<!-- </build>-->
167+
<!-- </profile>-->
168+
<!-- </profiles>-->
170169

171170
<build>
172171
<plugins>

0 commit comments

Comments
 (0)