Skip to content

Commit

Permalink
Add OSGi support
Browse files Browse the repository at this point in the history
  • Loading branch information
cschneider committed Jun 12, 2017
1 parent 4579dd7 commit 5a0aa69
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -8,3 +8,7 @@
# Ignore the maven target directory
target/

# Ignore eclipse files
.classpath
.settings/
.project
1 change: 1 addition & 0 deletions bnd.bnd
@@ -0,0 +1 @@
Export-Package: de.jollyday*
32 changes: 32 additions & 0 deletions pom.xml
Expand Up @@ -156,6 +156,16 @@
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand All @@ -179,6 +189,28 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
<goal>bnd-process</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down

0 comments on commit 5a0aa69

Please sign in to comment.