Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions parent_toplevel/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 https://maven.apache.org/xsd/changes-2.0.0.xsd">
<body>

<release version="2.1.2" date="not released">
<action type="update" dev="sseifert">
Configure Mockito instrumentation for inline mocking.
</action>
<action type="update" dev="sseifert">
Update global-parent dependency to 71.
</action>
</release>

<release version="2.1.0" date="2025-09-24">
<action type="update" dev="sseifert">
Switch minimum Java to Java 17 - both for build and compile target.
Expand Down
22 changes: 21 additions & 1 deletion parent_toplevel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>io.wcm.maven</groupId>
<artifactId>io.wcm.maven.global-parent</artifactId>
<version>70</version>
<version>71-SNAPSHOT</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -265,6 +265,26 @@
</executions>
</plugin>

<!-- Configure Mockito instrumentation for inline mocking -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>properties</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
</configuration>
</plugin>

</plugins>

<pluginManagement>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>io.wcm.devops</groupId>
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
<relativePath>parent_toplevel/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion public_site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>io.wcm.devops</groupId>
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.1.0</version>
<relativePath>../parent_toplevel/pom.xml</relativePath>
</parent>

Expand Down