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
Post a Comment