You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sergey Beryozkin (JIRA)" <ji...@apache.org> on 2009/08/11 09:57:15 UTC

[jira] Commented: (CXF-2386) abdera-extensions-main and abdera-i18n are required by cxf-bundle-minimal but not present in any repository

    [ https://issues.apache.org/jira/browse/CXF-2386?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12741743#action_12741743 ] 

Sergey Beryozkin commented on CXF-2386:
---------------------------------------

Alternatively you can add this repository info :

<repositories>
        <repository>
            <id>apache.incubating</id>
            <name>Apache Incubating Repository</name>
            <url>http://people.apache.org/repo/m2-incubating-repository</url>
        </repository>
</repositories>



> abdera-extensions-main and abdera-i18n are required by cxf-bundle-minimal but not present in any repository
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: CXF-2386
>                 URL: https://issues.apache.org/jira/browse/CXF-2386
>             Project: CXF
>          Issue Type: Bug
>    Affects Versions: 2.2.3
>         Environment: Maven 2.2.0
>            Reporter: Dennis Kieselhorst
>
> I have updated an application with cxf-bundle-minimal from 2.2 to 2.2.3. Build fails with:
> Missing:
> ----------
> 1) org.apache.abdera:abdera-i18n:jar:0.4.0-incubating
>   Try downloading the file manually from the project website.
>   Then, install it using the command:
>       mvn install:install-file -DgroupId=org.apache.abdera -DartifactId=abdera-i18n -Dversion=0.4.0-incubating -Dpackaging=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.abdera -DartifactId=abdera-i18n -Dversion=0.4.0-incubating -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
>   Path to dependency:
>         1) ...
>         2) org.apache.cxf:cxf-bundle-minimal:jar:2.2.3
>         3) org.apache.abdera:abdera-i18n:jar:0.4.0-incubating
> 2) org.apache.abdera:abdera-extensions-main:jar:0.4.0-incubating
>   Try downloading the file manually from the project website.
>   Then, install it using the command:
>       mvn install:install-file -DgroupId=org.apache.abdera -DartifactId=abdera-extensions-main -Dversion=0.4.0-incubating -Dpackaging=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.abdera -DartifactId=abdera-extensions-main -Dversion=0.4.0-incubating -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
>   Path to dependency:
>         1) ...
>         2) org.apache.cxf:cxf-bundle-minimal:jar:2.2.3
>         3) org.apache.abdera:abdera-extensions-main:jar:0.4.0-incubating
> Regarding to this malinglist thread http://www.nabble.com/Abdera-dependencies-td24264687.html scope should be provided. 
> I have to exclude the abdera dependencies to get it build.
> <exclusions>
> 	<exclusion>
> 		<groupId>org.apache.abdera</groupId>
> 		<artifactId>abdera-extensions-main</artifactId>
> 	</exclusion>
> 	<exclusion>
> 		<groupId>org.apache.abdera</groupId>
> 		<artifactId>abdera-i18n</artifactId>
> 	</exclusion>
> </exclusions>

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