Skip to content

Commit f497b5c

Browse files
Naxos84tipsy
authored andcommitted
support osgi meta data (#112)
1 parent f212895 commit f497b5c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,33 @@
122122
<configuration>
123123
</configuration>
124124
</plugin>
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-jar-plugin</artifactId>
128+
<version>2.4</version>
129+
<configuration>
130+
<archive>
131+
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
132+
<manifest>
133+
<addClasspath>true</addClasspath>
134+
</manifest>
135+
</archive>
136+
</configuration>
137+
</plugin>
138+
<plugin>
139+
<groupId>org.apache.felix</groupId>
140+
<artifactId>maven-bundle-plugin</artifactId>
141+
<version>2.5.0</version>
142+
<executions>
143+
<execution>
144+
<id>bundle-manifest</id>
145+
<phase>process-classes</phase>
146+
<goals>
147+
<goal>manifest</goal>
148+
</goals>
149+
</execution>
150+
</executions>
151+
</plugin>
125152
</plugins>
126153
</build>
127154

0 commit comments

Comments
 (0)