Skip to content

Commit 76ff418

Browse files
committed
Revert pom.xml to original version from master
1 parent 2989ac1 commit 76ff418

File tree

1 file changed

+31
-36
lines changed

1 file changed

+31
-36
lines changed

pom.xml

Lines changed: 31 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>org.junit</groupId>
2222
<artifactId>junit-bom</artifactId>
23-
<version>6.0.1</version>
23+
<version>6.0.0</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>
@@ -67,22 +67,36 @@
6767
</configuration>
6868
</plugin>
6969
<plugin>
70-
71-
<groupId>org.apache.maven.plugins</groupId>
72-
<artifactId>maven-compiler-plugin</artifactId>
73-
<version>3.14.1</version>
74-
<configuration>
75-
<release>21</release>
76-
<fork>true</fork>
77-
<compilerArgs>
78-
<arg>-Xlint:all</arg>
79-
<arg>-Xlint:-auxiliaryclass</arg>
80-
<arg>-Werror</arg>
81-
</compilerArgs>
82-
<jdkToolchain>
83-
<version>21</version>
84-
</jdkToolchain>
85-
</configuration>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-compiler-plugin</artifactId>
72+
<version>3.14.1</version>
73+
<configuration>
74+
<release>21</release>
75+
<compilerArgs>
76+
<arg>-Xlint:all</arg>
77+
<arg>-Xlint:-auxiliaryclass</arg>
78+
<arg>-Werror</arg>
79+
</compilerArgs>
80+
</configuration>
81+
</plugin>
82+
<plugin>
83+
<groupId>org.jacoco</groupId>
84+
<artifactId>jacoco-maven-plugin</artifactId>
85+
<version>0.8.14</version>
86+
<executions>
87+
<execution>
88+
<goals>
89+
<goal>prepare-agent</goal>
90+
</goals>
91+
</execution>
92+
<execution>
93+
<id>generate-code-coverage-report</id>
94+
<phase>test</phase>
95+
<goals>
96+
<goal>report</goal>
97+
</goals>
98+
</execution>
99+
</executions>
86100
</plugin>
87101
<plugin>
88102
<groupId>org.apache.maven.plugins</groupId>
@@ -139,25 +153,6 @@
139153
<excludeFromFailureFile>pmd-exclude.properties</excludeFromFailureFile>
140154
</configuration>
141155
</plugin>
142-
<plugin>
143-
<groupId>org.jacoco</groupId>
144-
<artifactId>jacoco-maven-plugin</artifactId>
145-
<version>0.8.14</version>
146-
<executions>
147-
<execution>
148-
<goals>
149-
<goal>prepare-agent</goal>
150-
</goals>
151-
</execution>
152-
<execution>
153-
<id>generate-code-coverage-report</id>
154-
<phase>test</phase>
155-
<goals>
156-
<goal>report</goal>
157-
</goals>
158-
</execution>
159-
</executions>
160-
</plugin>
161156
</plugins>
162157
</build>
163158
</project>

0 commit comments

Comments
 (0)