Skip to content

Commit 0a54ac8

Browse files
committed
added osgi bundle info
1 parent 7d73179 commit 0a54ac8

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

modules/swagger-annotations/pom.xml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,30 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.10</artifactId>
6-
<version>1.3.8</version>
6+
<version>1.3.8-SNAPSHOT</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-annotations</artifactId>
1212
<version>1.3.8</version>
13-
<packaging>jar</packaging>
13+
<packaging>bundle</packaging>
1414
<name>swagger-annotations</name>
1515

1616
<build>
1717
<sourceDirectory>src/main/java</sourceDirectory>
1818
<defaultGoal>install</defaultGoal>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.felix</groupId>
22+
<artifactId>maven-bundle-plugin</artifactId>
23+
<extensions>true</extensions>
24+
<configuration>
25+
<instructions>
26+
<Export-Package>com.wordnik.swagger.annotations</Export-Package>
27+
</instructions>
28+
</configuration>
29+
</plugin>
30+
</plugins>
1931
</build>
20-
</project>
32+
</project>

0 commit comments

Comments
 (0)