1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Description: Set the packaging type for the internal bundle dependencies
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/hawtdispatch-transport/pom.xml
+++ b/hawtdispatch-transport/pom.xml
@@ -31,7 +31,7 @@
<groupId>org.fusesource.hawtdispatch</groupId>
<artifactId>hawtdispatch-transport</artifactId>
<version>1.22</version>
- <packaging>bundle</packaging>
+ <packaging>jar</packaging>
<description>HawtDispatch Transport: Transport abstractions for HawtDispatch</description>
@@ -48,6 +48,7 @@
<groupId>org.fusesource.hawtdispatch</groupId>
<artifactId>hawtdispatch</artifactId>
<version>1.22</version>
+ <type>bundle</type>
</dependency>
<dependency>
<groupId>org.fusesource.hawtbuf</groupId>
@@ -87,4 +88,4 @@
</plugin>
</plugins>
</build>
-</project>
\ No newline at end of file
+</project>
|