Skip to content

Instantly share code, notes, and snippets.

@dileeph
Created May 1, 2017 18:42
Show Gist options
  • Save dileeph/57eb8b384991977adf18bdce5d3e8284 to your computer and use it in GitHub Desktop.
Save dileeph/57eb8b384991977adf18bdce5d3e8284 to your computer and use it in GitHub Desktop.
osgi basic maven pom content
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.2.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment