Skip to content

Commit

Permalink
Add OSGi bundle manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
swesteme committed Nov 16, 2023
1 parent 90acaf3 commit ef98539
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
build:

runs-on: ubuntu-18.04
runs-on: ubuntu-22.04

steps:
- name: Checkout
Expand Down
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

<groupId>de.westemeyer</groupId>
<artifactId>artifact-version-service</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<name>Artifact version service definition</name>
<packaging>bundle</packaging>

<description>The artifact-version-service is used to collect artifact versions in the classpath.</description>
<url>https://github.com/swesteme/artifact-version-service</url>
Expand Down Expand Up @@ -52,6 +53,21 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.4</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Export-Package>
de.westemeyer.version.model,
de.westemeyer.version.service
</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
Expand Down

0 comments on commit ef98539

Please sign in to comment.