Skip to content

Commit

Permalink
ISPN-9657 multimap, lock and counter OSGI manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
karesti authored and galderz committed Jan 30, 2019
1 parent 8dce1c9 commit e06c4e3
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
17 changes: 17 additions & 0 deletions counter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,23 @@
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>
${project.groupId}.counter.*;version=${project.version};-split-package:=error
</Export-Package>
<Include-Resources>
{maven-resources},
${project.build.outputDirectory}/${project.artifactId}-component-metadata.dat
</Include-Resources>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
Expand Down
17 changes: 17 additions & 0 deletions lock/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,23 @@
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>
${project.groupId}.lock.*;version=${project.version};-split-package:=error
</Export-Package>
<Include-Resources>
{maven-resources},
${project.build.outputDirectory}/${project.artifactId}-component-metadata.dat
</Include-Resources>
</instructions>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
Expand Down
19 changes: 19 additions & 0 deletions multimap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,23 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>
${project.groupId}.multimap.*;version=${project.version};-split-package:=error
</Export-Package>
<Include-Resources>
{maven-resources},
${project.build.outputDirectory}/${project.artifactId}-component-metadata.dat
</Include-Resources>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit e06c4e3

Please sign in to comment.