Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project bookshelf-inventory-api:
  2. Execution default-deploy of goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy failed:
  3. Plugin org.apache.maven.plugins:maven-deploy-plugin:2.7 or one of its dependencies could not be resolved:
  4. The repository system is offline but the artifact org.codehaus.plexus:plexus-utils:jar:1.5.6 is not available in the local repository.
  5.  
  6. <groupId>osgi.example</groupId>
  7. <artifactId>bookshelf-inventory-api</artifactId>
  8. <version>1.0.0</version>
  9.  
  10. <packaging>bundle</packaging>
  11.  
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.apache.felix</groupId>
  15. <artifactId>maven-bundle-plugin</artifactId>
  16. <version>2.4.0</version>
  17. </dependency>
  18. </dependencies>
  19.  
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <artifactId>maven-compiler-plugin</artifactId>
  24. <inherited>true</inherited>
  25. <configuration>
  26. <source>1.7</source>
  27. <target>1.7</target>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.felix</groupId>
  32. <artifactId>maven-bundle-plugin</artifactId>
  33. <version>2.4.0</version>
  34. <extensions>true</extensions>
  35. <configuration>
  36. <instructions>
  37. <Bundle-Category>inventory</Bundle-Category>
  38. <Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
  39. <Export-Package>osgi.example.bookshelf.inventory.api</Export-Package>
  40. </instructions>
  41. <remoteOBR>repo-rel</remoteOBR>
  42. <prefixUrl>file:///C:/home/src/demo/osgi/felix-3-book/releases</prefixUrl>
  43. <ignoreLock>true</ignoreLock>
  44. <!--
  45. <instructions>
  46. <Private-Package>org.foo.myproject.*</Private-Package>
  47. <Bundle-Activator>org.foo.myproject.impl1.Activator</Bundle-Activator>
  48. </instructions>
  49. -->
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. <distributionManagement>
  55. <!-- releases repo -->
  56. <repository>
  57. <id>repo-rel</id>
  58. <url>file:///C:/home/src/demo/osgi/felix-3-book/releases</url>
  59. </repository>
  60. </distributionManagement>
  61. <properties>
  62. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  63. </properties>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement