Skip to content

Commit

Permalink
added osgi support through maven bundle plugin (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoSpoethAtYatta authored Jun 27, 2023
1 parent b17dde7 commit a64052f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ limitations under the License.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ethlo.time</groupId>
<packaging>bundle</packaging>
<artifactId>itu</artifactId>
<version>1.7.3-SNAPSHOT</version>
<name>Internet Time Utility</name>
Expand Down Expand Up @@ -268,6 +269,19 @@ limitations under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.8</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
com.ethlo.time
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
Expand Down

0 comments on commit a64052f

Please sign in to comment.