Maven 'Missing artifact -


my local rpository has cxf-bundle-2.7.5.jar(download search.maven.org myself) , pom eclipse still error 'missing artifact org.apache.cxf:cxf-bundle:bundle:2.7.5' , when update project repository make file cxf-bundle-2.7.5.bundle.lastupdated everytime. how fix problem , why.

<dependency>         <groupid>org.apache.cxf</groupid>         <artifactid>cxf-bundle</artifactid>         <version>2.7.5</version>         <type>bundle</type>     </dependency> 

thanks!!!

the simple answer bundle not bundle in meaning of type. if take @ search.maven.org see there jar, source, javadoc available need change dependency definition following:

<dependency>     <groupid>org.apache.cxf</groupid>     <artifactid>cxf-bundle</artifactid>     <version>2.7.5</version> </dependency> 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -