[ https://issues.apache.org/jira/browse/MNG-6213?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16738794#comment-16738794 ]
Hudson commented on MNG-6213: ----------------------------- Build failed in Jenkins: Maven TLP » maven » MNG-6069 #23 See https://builds.apache.org/job/maven-box/job/maven/job/MNG-6069/23/ > Maven doesn't check the validity of scope value > ----------------------------------------------- > > Key: MNG-6213 > URL: https://issues.apache.org/jira/browse/MNG-6213 > Project: Maven > Issue Type: Improvement > Components: POM > Affects Versions: 3.3.9 > Environment: Apache Maven 3.3.9 > (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T01:41:47+09:00) > Maven home: /usr/local/Cellar/maven/3.3.9/libexec > Java version: 1.8.0_121, vendor: Oracle Corporation > Java home: > /Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home/jre > Default locale: en_US, platform encoding: UTF-8 > OS name: "mac os x", version: "10.12.4", arch: "x86_64", family: "mac" > Reporter: Jin Kwon > Assignee: Michael Osipov > Priority: Minor > Labels: scope > Fix For: 3.6.1 > > Time Spent: 10m > Remaining Estimate: 0h > > I accidentally put a wrong value into the {{scope}} tag. > {code:xml} > <dependencyManagement> > <dependencies> > <dependency> > <groupId>org.glassfish.jersey</groupId> > <artifactId>jersey-bom</artifactId> > <version>2.26-b03</version> > <type>pom</type> > <scope>include</scope> <!-- should be 'import' --> > </dependency> > </dependencies> > </dependencyManagement> > {code} > And, of course, my dependency doesn't work. > {code:xml} > <dependencies> > <dependency> > <groupId>org.glassfish.jersey.core</groupId> > <artifactId>jersey-common</artifactId> > <scope>test</scope> > </dependency> > </dependencies> > {code} > {code} > 'dependencies.dependency.version' for > org.glassfish.jersey.core:jersey-common:jar is missing. > {code} > Maven should complains about the wrong value of {{include}}. -- This message was sent by Atlassian JIRA (v7.6.3#76005)