Skip to content

Commit 68d6a49

Browse files
build(deps): bump jacoco-maven-plugin from 0.8.8 to 0.8.10 (#1203)
* build(deps): bump jacoco-maven-plugin from 0.8.8 to 0.8.10 * add opens for jdk16+ on surefire
1 parent 8b9ec57 commit 68d6a49

File tree

2 files changed

+22
-24
lines changed

2 files changed

+22
-24
lines changed

pom.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
7171
<aspectj-maven-plugin.version>1.13.1</aspectj-maven-plugin.version>
7272
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
73-
<jacoco-maven-plugin.version>0.8.8</jacoco-maven-plugin.version>
73+
<jacoco-maven-plugin.version>0.8.10</jacoco-maven-plugin.version>
7474
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
7575
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
7676
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
@@ -544,6 +544,27 @@
544544
</plugins>
545545
</build>
546546
</profile>
547+
<profile>
548+
<id>jdk16</id>
549+
<activation>
550+
<jdk>[16,)</jdk>
551+
</activation>
552+
<build>
553+
<plugins>
554+
<plugin>
555+
<groupId>org.apache.maven.plugins</groupId>
556+
<artifactId>maven-surefire-plugin</artifactId>
557+
<version>3.1.2</version>
558+
<configuration>
559+
<argLine>
560+
--add-opens java.base/java.util=ALL-UNNAMED
561+
--add-opens java.base/java.lang=ALL-UNNAMED
562+
</argLine>
563+
</configuration>
564+
</plugin>
565+
</plugins>
566+
</build>
567+
</profile>
547568
</profiles>
548569

549570
</project>

powertools-idempotency/pom.xml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -182,29 +182,6 @@
182182
</plugin>
183183
</plugins>
184184
</build>
185-
<profiles>
186-
<profile>
187-
<id>jdk16</id>
188-
<activation>
189-
<jdk>[16,)</jdk>
190-
</activation>
191-
<build>
192-
<plugins>
193-
<plugin>
194-
<groupId>org.apache.maven.plugins</groupId>
195-
<artifactId>maven-surefire-plugin</artifactId>
196-
<version>3.1.2</version>
197-
<configuration>
198-
<argLine>
199-
--add-opens java.base/java.util=ALL-UNNAMED
200-
--add-opens java.base/java.lang=ALL-UNNAMED
201-
</argLine>
202-
</configuration>
203-
</plugin>
204-
</plugins>
205-
</build>
206-
</profile>
207-
</profiles>
208185
<repositories>
209186
<repository>
210187
<id>dynamodb-local-oregon</id>

0 commit comments

Comments
 (0)