Created
May 25, 2018 09:44
-
-
Save Dennis-Koch/c6daeb2e3bec6e31579c8a7cfd89dd15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.codehaus.mojo.versions; | |
/* | |
* Licensed to the Apache Software Foundation (ASF) under one | |
* or more contributor license agreements. See the NOTICE file | |
* distributed with this work for additional information | |
* regarding copyright ownership. The ASF licenses this file | |
* to you under the Apache License, Version 2.0 (the | |
* "License"); you may not use this file except in compliance | |
* with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, | |
* software distributed under the License is distributed on an | |
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
* KIND, either express or implied. See the License for the | |
* specific language governing permissions and limitations | |
* under the License. | |
*/ | |
import org.apache.maven.plugin.MojoExecutionException; | |
import org.apache.maven.plugin.MojoFailureException; | |
import org.apache.maven.plugins.annotations.Mojo; | |
import org.apache.maven.plugins.annotations.Parameter; | |
import org.codehaus.mojo.versions.api.PomHelper; | |
import org.codehaus.mojo.versions.api.PropertyVersions; | |
import org.codehaus.mojo.versions.rewriting.ModifiedPomXMLEventReader; | |
import javax.xml.stream.XMLStreamException; | |
import java.util.Map; | |
import java.util.regex.Pattern; | |
/** | |
* Set a property to a given version without any sanity checks. Please be careful this can lead to changes which might | |
* not build anymore. The sanity checks are done by other goals like <code>update-properties</code> or | |
* <code>update-property</code> etc. they are not done here. So use this goal with care. | |
* | |
* @author Karl Heinz Marbaise | |
* @since 2.5 | |
*/ | |
@Mojo( name = "set-property", requiresProject = true, requiresDirectInvocation = true, threadSafe = true ) | |
public class SetPropertyMojo | |
extends AbstractVersionsUpdaterMojo | |
{ | |
// ------------------------------ FIELDS ------------------------------ | |
/** | |
* A property to update. | |
*/ | |
@Parameter( property = "property" ) | |
private String property = null; | |
/** | |
* The new version to set the property. | |
*/ | |
@Parameter( property = "newVersion" ) | |
private String newVersion = null; | |
/** | |
* Whether properties linking versions should be auto-detected or not. | |
*/ | |
@Parameter( property = "autoLinkItems", defaultValue = "true" ) | |
private boolean autoLinkItems; | |
/** | |
* @param pom the pom to update. | |
* @throws MojoExecutionException when things go wrong | |
* @throws MojoFailureException when things go wrong in a very bad way | |
* @throws XMLStreamException when things go wrong with XML streaming | |
* @see AbstractVersionsUpdaterMojo#update(ModifiedPomXMLEventReader) | |
*/ | |
protected void update( ModifiedPomXMLEventReader pom ) | |
throws MojoExecutionException, MojoFailureException, XMLStreamException | |
{ | |
String[] propertyNames = property.split(Pattern.quote(",")); | |
Property[] propertyConfigs = new Property[propertyNames.length]; | |
for (int a = propertyNames.length; a-- > 0;) { | |
Property propertyConfig = new Property(propertyNames[a].trim()); | |
propertyConfig.setVersion(newVersion); | |
propertyConfigs[a] = propertyConfig; | |
} | |
Map<Property, PropertyVersions> propertyVersions = | |
this.getHelper().getVersionPropertiesMap( getProject(), propertyConfigs, property, "", | |
autoLinkItems ); | |
for ( Map.Entry<Property, PropertyVersions> entry : propertyVersions.entrySet() ) | |
{ | |
Property property = entry.getKey(); | |
PropertyVersions version = entry.getValue(); | |
final String currentVersion = getProject().getProperties().getProperty( property.getName() ); | |
if ( currentVersion == null ) | |
{ | |
continue; | |
} | |
PomHelper.setPropertyVersion( pom, version.getProfileId(), property.getName(), newVersion ); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment