mirror of https://github.com/apache/maven.git
parent
71128cb6c0
commit
9c946263fa
|
@ -105,13 +105,13 @@ public class DefaultModelValidator
|
|||
+ ", the parent element cannot have the same groupId:artifactId as the project.",
|
||||
parent );
|
||||
}
|
||||
|
||||
|
||||
if ( equals( "LATEST", parent.getVersion() ) || equals( "RELEASE", parent.getVersion() ) )
|
||||
{
|
||||
addViolation( problems, Severity.WARNING, Version.BASE, "parent.version", null,
|
||||
"is either LATEST or RELEASE (both of them are being deprecated)", parent );
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
if ( request.getValidationLevel() >= ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0 )
|
||||
|
@ -598,6 +598,12 @@ public class DefaultModelValidator
|
|||
|
||||
validateEffectiveModelAgainstDependency( prefix, problems, m, d, request );
|
||||
}
|
||||
else
|
||||
{
|
||||
validateEnum( prefix + "scope", problems, Severity.WARNING, Version.V20, d.getScope(),
|
||||
d.getManagementKey(), d, "provided", "compile", "runtime", "test", "system",
|
||||
"import" );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -339,6 +339,16 @@ public class DefaultModelValidatorTest
|
|||
assertTrue( result.getWarnings().get( 1 ).contains( "test:g" ) );
|
||||
}
|
||||
|
||||
public void testBadDependencyManagementScope()
|
||||
throws Exception
|
||||
{
|
||||
SimpleProblemCollector result = validate( "bad-dependency-management-scope.xml" );
|
||||
|
||||
assertViolations( result, 0, 0, 1 );
|
||||
|
||||
assertContains( result.getWarnings().get( 0 ), "test:g" );
|
||||
}
|
||||
|
||||
public void testBadDependencyVersion()
|
||||
throws Exception
|
||||
{
|
||||
|
|
|
@ -0,0 +1,72 @@
|
|||
<!--
|
||||
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.
|
||||
-->
|
||||
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>aid</artifactId>
|
||||
<groupId>gid</groupId>
|
||||
<version>0.1</version>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>a</artifactId>
|
||||
<version>0.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>b</artifactId>
|
||||
<version>0.2</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>c</artifactId>
|
||||
<version>0.2</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>d</artifactId>
|
||||
<version>0.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>e</artifactId>
|
||||
<version>0.2</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>f</artifactId>
|
||||
<version>0.2</version>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>test</groupId>
|
||||
<artifactId>g</artifactId>
|
||||
<version>1</version>
|
||||
<type>pom</type>
|
||||
<scope>include</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</project>
|
Loading…
Reference in New Issue