We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982cd73 commit f8f7054Copy full SHA for f8f7054
modules/swagger-annotations/pom.xml
@@ -10,11 +10,25 @@
10
<groupId>com.wordnik</groupId>
11
<artifactId>swagger-annotations</artifactId>
12
<version>1.3.8-SNAPSHOT</version>
13
- <packaging>jar</packaging>
+ <packaging>bundle</packaging>
14
<name>swagger-annotations</name>
15
16
<build>
17
<sourceDirectory>src/main/java</sourceDirectory>
18
<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
33
</build>
34
</project>
0 commit comments