You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Stevo Slavic (JIRA)" <ji...@apache.org> on 2009/11/30 13:10:20 UTC

[jira] Created: (CXF-2563) CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository

CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository
---------------------------------------------------------------------------------------------------------

                 Key: CXF-2563
                 URL: https://issues.apache.org/jira/browse/CXF-2563
             Project: CXF
          Issue Type: Bug
          Components: Build system
    Affects Versions: 2.2.5
            Reporter: Stevo Slavic


[cxf-rt-ws-security-2.2.5.pom|http://repo2.maven.org/maven2/org/apache/cxf/cxf-rt-ws-security/2.2.5/cxf-rt-ws-security-2.2.5.pom] contains reference to external (non maven central) repository, so it does not adhere to the rules for deploying artifacts to maven central repository (see "FAQ and common mistakes" in official ["Guide to uploading artifacts to the Central Repository"|http://maven.apache.org/guides/mini/guide-central-repository-upload.html]). Please check other CXF modules too for the same error, before deploying to maven central.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (CXF-2563) CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository

Posted by "Stevo Slavic (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stevo Slavic reopened CXF-2563:
-------------------------------


Please look from CXF users perspective,  there are numerous issues caused by this unneeded repository definition, e.g. while building a project with dependency to cxf-rt-ws-security, maven and its various core plugins pickup all the repository definitions from the project but also from its dependencies (including transitive ones) to lookup dependencies, so maven will waste time looking up snapshots at apache.snapshots repository and build will last longer.

> CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: CXF-2563
>                 URL: https://issues.apache.org/jira/browse/CXF-2563
>             Project: CXF
>          Issue Type: Bug
>          Components: Build system
>    Affects Versions: 2.2.5
>            Reporter: Stevo Slavic
>             Fix For: Invalid
>
>
> [cxf-rt-ws-security-2.2.5.pom|http://repo2.maven.org/maven2/org/apache/cxf/cxf-rt-ws-security/2.2.5/cxf-rt-ws-security-2.2.5.pom] contains reference to external (non maven central) repository, so it does not adhere to the rules for deploying artifacts to maven central repository (see "FAQ and common mistakes" in official ["Guide to uploading artifacts to the Central Repository"|http://maven.apache.org/guides/mini/guide-central-repository-upload.html]). Please check other CXF modules too for the same error, before deploying to maven central.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CXF-2563) CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-2563.
------------------------------

       Resolution: Won't Fix
    Fix Version/s: Invalid


It defines a snapshot only repository which is needed for testing various snapshot related things.   All non-snapshot deps are in central.

> CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: CXF-2563
>                 URL: https://issues.apache.org/jira/browse/CXF-2563
>             Project: CXF
>          Issue Type: Bug
>          Components: Build system
>    Affects Versions: 2.2.5
>            Reporter: Stevo Slavic
>             Fix For: Invalid
>
>
> [cxf-rt-ws-security-2.2.5.pom|http://repo2.maven.org/maven2/org/apache/cxf/cxf-rt-ws-security/2.2.5/cxf-rt-ws-security-2.2.5.pom] contains reference to external (non maven central) repository, so it does not adhere to the rules for deploying artifacts to maven central repository (see "FAQ and common mistakes" in official ["Guide to uploading artifacts to the Central Repository"|http://maven.apache.org/guides/mini/guide-central-repository-upload.html]). Please check other CXF modules too for the same error, before deploying to maven central.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CXF-2563) CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-2563.
------------------------------

    Resolution: Won't Fix


This is NOT  a problem for recent versions of Maven (example: 2.2.1).

The repository entry in ws-security is ONLY used for resolving dependencies of ws-security, not the whole project.   Since the ws-security stuff at central has no snapshot deps, the repositry entry is pretty much ignored as it's defined with releases turned off.   It never searches the apache.snapshot repo.


For example, if you take one of our samples and force it to cxf.version 2.2.5 and remove the <repository> and <pluginRepository> entries out of them and run mvn with a clean repo, it does NOT hit the apache snapshot repo for anything.


> CXF RT WS Security artifact POM at maven central repo wrongfuly contains reference to external repository
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: CXF-2563
>                 URL: https://issues.apache.org/jira/browse/CXF-2563
>             Project: CXF
>          Issue Type: Bug
>          Components: Build system
>    Affects Versions: 2.2.5
>            Reporter: Stevo Slavic
>             Fix For: Invalid
>
>
> [cxf-rt-ws-security-2.2.5.pom|http://repo2.maven.org/maven2/org/apache/cxf/cxf-rt-ws-security/2.2.5/cxf-rt-ws-security-2.2.5.pom] contains reference to external (non maven central) repository, so it does not adhere to the rules for deploying artifacts to maven central repository (see "FAQ and common mistakes" in official ["Guide to uploading artifacts to the Central Repository"|http://maven.apache.org/guides/mini/guide-central-repository-upload.html]). Please check other CXF modules too for the same error, before deploying to maven central.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.