Skip to content

Commit f8f7054

Browse files
committed
added osgi bundle per #627
1 parent 982cd73 commit f8f7054

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

modules/swagger-annotations/pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,25 @@
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-annotations</artifactId>
1212
<version>1.3.8-SNAPSHOT</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+
20+
<plugins>
21+
<plugin>
22+
<groupId>org.apache.felix</groupId>
23+
<artifactId>maven-bundle-plugin</artifactId>
24+
<extensions>true</extensions>
25+
<configuration>
26+
<instructions>
27+
<Export-Package>com.wordnik.swagger.annotations</Export-Package>
28+
</instructions>
29+
</configuration>
30+
</plugin>
31+
</plugins>
32+
1933
</build>
2034
</project>

0 commit comments

Comments
 (0)