Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.codehaus.mojo:mojo-parent from 85 to 86 #1139

Merged
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
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
Loading