Fixed URL's to issue tracking after transition to

Apache Software Foundation.
This commit is contained in:
Karl Heinz Marbaise 2015-07-19 09:53:50 +02:00
parent efc240553b
commit 15223116a6
8 changed files with 8 additions and 8 deletions

View File

@ -184,7 +184,7 @@ public void testVersionComparing()
}
/**
* Test <a href="https://jira.codehaus.org/browse/MNG-5568">MNG-5568</a> edge case
* Test <a href="https://issues.apache.org/jira/browse/MNG-5568">MNG-5568</a> edge case
* which was showing transitive inconsistency: since A > B and B > C then we should have A > C
* otherwise sorting a list of ComparableVersions() will in some cases throw runtime exception;
* see Netbeans issues <a href="https://netbeans.org/bugzilla/show_bug.cgi?id=240845">240845</a> and

View File

@ -28,7 +28,7 @@
* Verifies scope of root project is preserved regardless of parent depenedency management.
*
* @author <a href="mailto:pschneider@gmail.com">Patrick Schneider</a>
* @see <a href="http://jira.codehaus.org/browse/MNG-2919">MNG-2919</a>
* @see <a href="https://issues.apache.org/jira/browse/MNG-2919">MNG-2919</a>
*/
public class ProjectInheritanceTest
extends AbstractProjectInheritanceTestCase

View File

@ -28,7 +28,7 @@
* indicate at what lifecycle point it is being called.
*
* @see <a href="http://maven.apache.org/examples/maven-3-lifecycle-extensions.html">example</a>
* @see <a href="http://jira.codehaus.org/browse/MNG-4224">MNG-4224</a>
* @see <a href="https://issues.apache.org/jira/browse/MNG-4224">MNG-4224</a>
* @since 3.0-alpha-3
*/
public abstract class AbstractMavenLifecycleParticipant

View File

@ -64,7 +64,7 @@ public class DefaultClassRealmManager
/**
* During normal command line build, ClassWorld is loaded by jvm system classloader, which only includes
* plexus-classworlds jar and possibly javaagent classes, see http://jira.codehaus.org/browse/MNG-4747.
* plexus-classworlds jar and possibly javaagent classes, see https://issues.apache.org/jira/browse/MNG-4747.
* <p>
* Using ClassWorld to determine plugin/extensions realm parent classloaders gives m2e and integration test harness
* flexibility to load multiple version of maven into dedicated classloaders without assuming state of jvm system

View File

@ -29,7 +29,7 @@ public class SystemProperties
/**
* Thread-safe System.properties copy implementation.
*
* @see http://jira.codehaus.org/browse/MNG-5670
* @see https://issues.apache.org/jira/browse/MNG-5670
*/
public static void addSystemProperties( Properties props )
{

View File

@ -446,7 +446,7 @@ else if ( cliRequest.quiet )
slf4jConfiguration.setRootLoggerLevel( Slf4jConfiguration.Level.ERROR );
}
// else fall back to default log level specified in conf
// see http://jira.codehaus.org/browse/MNG-2570
// see https://issues.apache.org/jira/browse/MNG-2570
if ( cliRequest.commandLine.hasOption( CLIManager.LOG_FILE ) )
{

View File

@ -40,7 +40,7 @@
/**
* Determines profile activation based on the existence/absence of some file.
* File name interpolation support is limited to <code>${basedir}</code> (since Maven 3,
* see <a href="http://jira.codehaus.org/browse/MNG-2363">MNG-2363</a>),
* see <a href="https://issues.apache.org/jira/browse/MNG-2363">MNG-2363</a>),
* System properties and request properties.
* <code>${project.basedir}</code> is intentionally not supported as this form would suggest that other
* <code>${project.*}</code> expressions can be used, which is however beyond the design.

View File

@ -46,7 +46,7 @@ public interface ProfileActivator
/**
* Determines whether specified activation method is present in configuration or not. It should help to have AND
* between activation conditions
* Need for solving http://jira.codehaus.org/browse/MNG-4565
* Need for solving https://issues.apache.org/jira/browse/MNG-4565
* @param profile The profile whose activation status should be determined, must not be {@code null}.
* @param context The environmental context used to determine the activation status of the profile, must not be
* {@code null}.