Hung Huynh created MSHADE-136:
---------------------------------

             Summary: Shade dependency reduced pom uses timestamp in artifact 
names instead of -SNAPSHOT
                 Key: MSHADE-136
                 URL: https://jira.codehaus.org/browse/MSHADE-136
             Project: Maven 2.x Shade Plugin
          Issue Type: Bug
    Affects Versions: 2.0
            Reporter: Hung Huynh


The major problem that we run into is that Maven would download that exact 
timestamp artifact instead of using the latest.

Instead of this

    <dependency>
      <groupId>org.mycom</groupId>
      <artifactId>management-core</artifactId>
      <version>1.1.0-20130115.201411-23</version>
      <scope>compile</scope>
    </dependency>

should have been this

    <dependency>
      <groupId>org.mycom</groupId>
      <artifactId>management-core</artifactId>
      <version>1.1.0-SNAPSHOT</version>
      <scope>compile</scope>
    </dependency>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to