Skip to content

Commit

Permalink
Bump org.codehaus.mojo:mojo-parent from 85 to 86 (#1139)
Browse files Browse the repository at this point in the history
* Bump org.codehaus.mojo:mojo-parent from 85 to 86

Bumps [org.codehaus.mojo:mojo-parent](https://github.com/mojohaus/mojo-parent) from 85 to 86.
- [Release notes](https://github.com/mojohaus/mojo-parent/releases)
- [Commits](https://github.com/mojohaus/mojo-parent/commits)

---
updated-dependencies:
- dependency-name: org.codehaus.mojo:mojo-parent
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix build with new parent

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Slawomir Jaranowski <s.jaranowski@gmail.com>
  • Loading branch information
dependabot[bot] and slawekjaranowski authored Oct 11, 2024
1 parent 9197125 commit 1916d74
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 17 deletions.
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mojo-parent</artifactId>
<version>85</version>
<version>86</version>
</parent>

<groupId>org.codehaus.mojo.versions</groupId>
Expand Down Expand Up @@ -123,9 +123,11 @@
<doxiaVersion>1.12.0</doxiaVersion>
<doxia-sitetoolsVersion>1.11.1</doxia-sitetoolsVersion>
<mockitoVersion>4.11.0</mockitoVersion>

<!-- dotted property can not be used in .vm -->
<pluginVersion>${project.version}</pluginVersion>
<sitePluginVersion>${maven-site-plugin.version}</sitePluginVersion>
<!-- dotted property can not be used in .vm -->
<sisuMavenPluginVersion>${sisu-maven-plugin.version}</sisuMavenPluginVersion>
<fluidoVersion>${maven-fluido-skin.version}</fluidoVersion>
<modelloNamespaceRuleVersion>2.1.0</modelloNamespaceRuleVersion>
<modelloNamespaceReportVersion>2.0.0</modelloNamespaceReportVersion>
Expand Down
6 changes: 3 additions & 3 deletions versions-api/src/site/markdown/index.md.vm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Your Maven project should look like:
<dependency>
<groupId>org.codehaus.mojo.versions</groupId>
<artifactId>versions-api</artifactId>
<version>${project.version}</version>
<version>${pluginVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -44,7 +44,7 @@ Your Maven project should look like:
<!-- build index of JSR 330 components -->
<groupId>org.eclipse.sisu</groupId>
<artifactId>sisu-maven-plugin</artifactId>
<version>${sisu-maven-plugin-version}</version>
<version>${sisuMavenPluginVersion}</version>
<executions>
<execution>
<id>generate-index</id>
Expand Down Expand Up @@ -89,7 +89,7 @@ You need to add your extension as plugin dependency:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${project.version}</version>
<version>${pluginVersion}</version>
<dependencies>
<dependency>
<!-- add your extension as plugin dependency -->
Expand Down
2 changes: 1 addition & 1 deletion versions-enforcer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<properties>
<!-- used in documentations -->
<maven-enforcer-plugin-version>${maven-enforcer-plugin.version}</maven-enforcer-plugin-version>
<mavenEnforcerPluginVersion>${maven-enforcer-plugin.version}</mavenEnforcerPluginVersion>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion versions-enforcer/src/site/markdown/index.md.vm
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ It will also ignore all sub-incremental updates.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin-version}</version>
<version>${mavenEnforcerPluginVersion}</version>
<goals>
<goal>enforce</goal>
</goals>
Expand Down
3 changes: 1 addition & 2 deletions versions-maven-plugin/src/it/it-set-008/verify.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.apache.commons.lang.StringUtils

import javax.xml.parsers.DocumentBuilderFactory
import javax.xml.xpath.XPathFactory
Expand Down Expand Up @@ -37,7 +36,7 @@ class Checker
try
{
def actual = readXPath( pom, xpath )
if ( !StringUtils.equals( expected, actual ) )
if ( !Objects.equals( expected, actual ) )
{
System.out.println( pom + " [xpath:" + xpath + "] expected '" + expected + "' found '" + actual + "' : " + message );
result = false;
Expand Down
3 changes: 1 addition & 2 deletions versions-maven-plugin/src/it/it-set-009/verify.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.apache.commons.lang.StringUtils

import javax.xml.parsers.DocumentBuilderFactory
import javax.xml.xpath.XPathFactory
Expand Down Expand Up @@ -36,7 +35,7 @@ class Checker
try
{
def actual = readXPath( pom, xpath )
if ( !StringUtils.equals( expected, actual ) )
if ( !Objects.equals( expected, actual ) )
{
System.out.println( pom + " [xpath:" + xpath + "] expected '" + expected + "' found '" + actual + "' : " + message );
result = false;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.apache.commons.lang.StringUtils

import javax.xml.parsers.DocumentBuilderFactory
import javax.xml.xpath.XPathFactory
Expand Down Expand Up @@ -36,7 +35,7 @@ class Checker
try
{
def actual = readXPath( pom, xpath )
if ( !StringUtils.equals( expected, actual ) )
if ( !Objects.equals( expected, actual ) )
{
System.out.println( pom + " [xpath:" + xpath + "] expected '" + expected + "' found '" + actual + "' : " + message );
result = false;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.apache.commons.lang.StringUtils

import javax.xml.parsers.DocumentBuilderFactory
import javax.xml.xpath.XPathFactory
Expand Down Expand Up @@ -37,7 +36,7 @@ class Checker
try
{
def actual = readXPath( pom, xpath )
if ( !StringUtils.equals( expected, actual ) )
if ( !Objects.equals( expected, actual ) )
{
System.out.println( pom + " [xpath:" + xpath + "] expected '" + expected + "' found '" + actual + "' : " + message );
result = false;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import org.apache.commons.lang.StringUtils

import javax.xml.parsers.DocumentBuilderFactory
import javax.xml.xpath.XPathFactory
Expand Down Expand Up @@ -37,7 +36,7 @@ class Checker
try
{
def actual = readXPath( pom, xpath )
if ( !StringUtils.equals( expected, actual ) )
if ( !Objects.equals( expected, actual ) )
{
System.out.println( pom + " [xpath:" + xpath + "] expected '" + expected + "' found '" + actual + "' : " + message );
result = false;
Expand Down

0 comments on commit 1916d74

Please sign in to comment.