You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Brett Porter (JIRA)" <ji...@codehaus.org> on 2007/08/21 07:36:47 UTC

[jira] Created: (MNG-3160) IT 126 is failing on trunk and maven-2.0.x branch

IT 126 is failing on trunk and maven-2.0.x branch
-------------------------------------------------

                 Key: MNG-3160
                 URL: http://jira.codehaus.org/browse/MNG-3160
             Project: Maven 2
          Issue Type: Bug
          Components: integration tests
    Affects Versions: 2.0.8, 2.1-alpha-1
            Reporter: Brett Porter


[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
  Try downloading the file manually from the project website.
  Then, install it using the command: 
      mvn install:install-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
          -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there: 
      mvn deploy:deploy-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
          -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file \
           -Durl=[url] -DrepositoryId=[id]
  Path to dependency: 
        1) org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
        2) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
----------
1 required artifact is missing.
for artifact: 
  org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
from the specified remote repositories:
  central (http://repo1.maven.org/maven2)


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MNG-3160) IT 126 is failing on trunk and maven-2.0.x branch

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3160?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated MNG-3160:
------------------------------

         Priority: Blocker  (was: Major)
    Fix Version/s: 2.0.x

> IT 126 is failing on trunk and maven-2.0.x branch
> -------------------------------------------------
>
>                 Key: MNG-3160
>                 URL: http://jira.codehaus.org/browse/MNG-3160
>             Project: Maven 2
>          Issue Type: Bug
>          Components: integration tests
>    Affects Versions: 2.0.8, 2.1-alpha-1
>            Reporter: Brett Porter
>            Priority: Blocker
>             Fix For: 2.0.x
>
>
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Failed to resolve artifact.
> Missing:
> ----------
> 1) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
>   Try downloading the file manually from the project website.
>   Then, install it using the command: 
>       mvn install:install-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
> Alternatively, if you host your own repository you can deploy the file there: 
>       mvn deploy:deploy-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file \
>            -Durl=[url] -DrepositoryId=[id]
>   Path to dependency: 
>         1) org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
>         2) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
> ----------
> 1 required artifact is missing.
> for artifact: 
>   org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
> from the specified remote repositories:
>   central (http://repo1.maven.org/maven2)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MNG-3160) IT 126 is failing on trunk and maven-2.0.x branch

Posted by "Piotr Tabor (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-3160?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_106258 ] 

Piotr Tabor commented on MNG-3160:
----------------------------------

This bug is caused by not released version of Maven Jar Plugin. 
The sufficient patch (Connected to MJAR-75) was applied, by 
Maven Jar Plugin has not been released.  

It will work with maven-jar-plugin-2.2(-snapshot). 

If it tests can depend on SNAPSHOT version of plugins
to correct the problem you need to add:
<pluginManagement>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-jar-plugin</artifactId>
     <version>2.2-SNAPSHOT</version>
</plugin>
<pluginManagement>

to core-integration-testing/core-integration-tests/src/test/resources/it0126-testJarDependency/pom.xml

> IT 126 is failing on trunk and maven-2.0.x branch
> -------------------------------------------------
>
>                 Key: MNG-3160
>                 URL: http://jira.codehaus.org/browse/MNG-3160
>             Project: Maven 2
>          Issue Type: Bug
>          Components: integration tests
>    Affects Versions: 2.0.8, 2.1-alpha-1
>            Reporter: Brett Porter
>            Priority: Blocker
>             Fix For: 2.0.x
>
>
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Failed to resolve artifact.
> Missing:
> ----------
> 1) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
>   Try downloading the file manually from the project website.
>   Then, install it using the command: 
>       mvn install:install-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
> Alternatively, if you host your own repository you can deploy the file there: 
>       mvn deploy:deploy-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file \
>            -Durl=[url] -DrepositoryId=[id]
>   Path to dependency: 
>         1) org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
>         2) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
> ----------
> 1 required artifact is missing.
> for artifact: 
>   org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
> from the specified remote repositories:
>   central (http://repo1.maven.org/maven2)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (MNG-3160) Several integration tests have been disabled

Posted by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3160?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benjamin Bentmann closed MNG-3160.
----------------------------------

         Assignee: Benjamin Bentmann
       Resolution: Fixed
    Fix Version/s:     (was: 2.0.x)

The only test mentioned here, it0126, has been migrated over to the Maven JAR Plugin in [r707892|http://svn.eu.apache.org/viewvc?view=rev&revision=707892] where it belongs and happily passes.

> Several integration tests have been disabled
> --------------------------------------------
>
>                 Key: MNG-3160
>                 URL: http://jira.codehaus.org/browse/MNG-3160
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Integration Tests
>    Affects Versions: 2.0.8, 3.0-alpha-1
>            Reporter: Brett Porter
>            Assignee: Benjamin Bentmann
>            Priority: Blocker
>
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Failed to resolve artifact.
> Missing:
> ----------
> 1) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
>   Try downloading the file manually from the project website.
>   Then, install it using the command: 
>       mvn install:install-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
> Alternatively, if you host your own repository you can deploy the file there: 
>       mvn deploy:deploy-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file \
>            -Durl=[url] -DrepositoryId=[id]
>   Path to dependency: 
>         1) org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
>         2) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
> ----------
> 1 required artifact is missing.
> for artifact: 
>   org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
> from the specified remote repositories:
>   central (http://repo1.maven.org/maven2)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MNG-3160) Several integration tests have been disabled

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-3160?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated MNG-3160:
------------------------------

    Summary: Several integration tests have been disabled  (was: IT 126 is failing on trunk and maven-2.0.x branch)

> Several integration tests have been disabled
> --------------------------------------------
>
>                 Key: MNG-3160
>                 URL: http://jira.codehaus.org/browse/MNG-3160
>             Project: Maven 2
>          Issue Type: Bug
>          Components: integration tests
>    Affects Versions: 2.0.8, 2.1-alpha-1
>            Reporter: Brett Porter
>            Priority: Blocker
>             Fix For: 2.0.x
>
>
> [INFO] ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO] ------------------------------------------------------------------------
> [INFO] Failed to resolve artifact.
> Missing:
> ----------
> 1) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
>   Try downloading the file manually from the project website.
>   Then, install it using the command: 
>       mvn install:install-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file
> Alternatively, if you host your own repository you can deploy the file there: 
>       mvn deploy:deploy-file -DgroupId=org.apache.maven.its.it0126 -DartifactId=model \
>           -Dversion=1.0-SNAPSHOT -Dclassifier=tests -Dpackaging=test-jar -Dfile=/path/to/file \
>            -Durl=[url] -DrepositoryId=[id]
>   Path to dependency: 
>         1) org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
>         2) org.apache.maven.its.it0126:model:test-jar:tests:1.0-SNAPSHOT
> ----------
> 1 required artifact is missing.
> for artifact: 
>   org.apache.maven.its.it0126:client:jar:1.0-SNAPSHOT
> from the specified remote repositories:
>   central (http://repo1.maven.org/maven2)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira