Skip to content

Commit 490cbe2

Browse files
Update dependency io.wcm.devops:io.wcm.devops.parent_toplevel to v2.1.0 (#78)
* Configure Mockito instrumentation for inline mocking Update global-parent dependency to 71 * Update dependency io.wcm.devops:io.wcm.devops.parent_toplevel to v2.1.0 --------- Co-authored-by: Stefan Seifert <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 38e0441 commit 490cbe2

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

parent_toplevel/changes.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@
2424
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 https://maven.apache.org/xsd/changes-2.0.0.xsd">
2525
<body>
2626

27+
<release version="2.1.2" date="not released">
28+
<action type="update" dev="sseifert">
29+
Configure Mockito instrumentation for inline mocking.
30+
</action>
31+
<action type="update" dev="sseifert">
32+
Update global-parent dependency to 71.
33+
</action>
34+
</release>
35+
2736
<release version="2.1.0" date="2025-09-24">
2837
<action type="update" dev="sseifert">
2938
Switch minimum Java to Java 17 - both for build and compile target.

parent_toplevel/pom.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>io.wcm.maven</groupId>
2727
<artifactId>io.wcm.maven.global-parent</artifactId>
28-
<version>70</version>
28+
<version>71-SNAPSHOT</version>
2929
<relativePath />
3030
</parent>
3131

@@ -265,6 +265,26 @@
265265
</executions>
266266
</plugin>
267267

268+
<!-- Configure Mockito instrumentation for inline mocking -->
269+
<plugin>
270+
<groupId>org.apache.maven.plugins</groupId>
271+
<artifactId>maven-dependency-plugin</artifactId>
272+
<executions>
273+
<execution>
274+
<goals>
275+
<goal>properties</goal>
276+
</goals>
277+
</execution>
278+
</executions>
279+
</plugin>
280+
<plugin>
281+
<groupId>org.apache.maven.plugins</groupId>
282+
<artifactId>maven-surefire-plugin</artifactId>
283+
<configuration>
284+
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
285+
</configuration>
286+
</plugin>
287+
268288
</plugins>
269289

270290
<pluginManagement>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>io.wcm.devops</groupId>
2828
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
29-
<version>2.1.0-SNAPSHOT</version>
29+
<version>2.1.0</version>
3030
<relativePath>parent_toplevel/pom.xml</relativePath>
3131
</parent>
3232

public_site/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>io.wcm.devops</groupId>
2828
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
29-
<version>2.1.0-SNAPSHOT</version>
29+
<version>2.1.0</version>
3030
<relativePath>../parent_toplevel/pom.xml</relativePath>
3131
</parent>
3232

0 commit comments

Comments
 (0)