-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MRELEASE-1087] Upgrade Maven to 3.2.5 (and de-plexus) (#118)
Mass changes to plugin: * update maven 3.0 -> 3.2.5 * update resolver from org.sonatype to org.eclipse package * off plexus XML, move fully to JSR330 * off plexus APIs like LogEnabled, Contextualize, etc * use slf4j API for logging instead of Plexus Logger * tests: off from Junit3 PlexusTestCase w/ XMLs to modern(er) Junit 4 * tests: off from PlexusTestCase XMLs (one exception remains) * reformat
- Loading branch information
Showing
213 changed files
with
3,568 additions
and
3,278 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,17 +20,24 @@ | |
*/ | ||
|
||
import org.apache.maven.shared.release.ReleaseResult; | ||
import org.codehaus.plexus.logging.AbstractLogEnabled; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* Base class for all phases. | ||
* | ||
* @author <a href="mailto:[email protected]">Brett Porter</a> | ||
*/ | ||
public abstract class AbstractReleasePhase | ||
extends AbstractLogEnabled | ||
implements ReleasePhase | ||
{ | ||
private final Logger logger = LoggerFactory.getLogger( getClass() ); | ||
|
||
protected Logger getLogger() | ||
{ | ||
return logger; | ||
} | ||
|
||
/** | ||
* <p>logInfo.</p> | ||
* | ||
|
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
Oops, something went wrong.