In a pom I specify:
<packaging>bundle</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<!-- <version>2.1.0</version>-->
<version>1.4.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>test.ss</Bundle-SymbolicName>
<Bundle-Name>${pom.artifactId}</Bundle-Name>
<Bundle-Version>${pom.version}</Bundle-Version>
<Export-Package>test.ss*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
but when I build it with maven3 : mvn clean install -U I get the error:
[ERROR] Plugin org.apache.maven.plugins:maven-resources-plugin:2.5-SNAPSHOT
or one of its dependencies could not be resolved: The following
artifacts could not be resolved: org.apach
e.maven.plugins:maven-resources-plugin:jar:2.5-SNAPSHOT: Failure to
find org.apache.maven.plugins:maven-resources-plugin:jar:2.5-SNAPSHOT
in http://repository:8081/nexus/content/grou
ps/public was cached in the local repository. Resolution will not be
reattempted until the update interval of nexus has elapsed or updates
are forced. -> [Help 1]
[ERROR]
This project has worked fine before. Any ideas why its all of the sudden broken?
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]