Skip to content

Commit 1205ff2

Browse files
committed
Feature bundle
1 parent b723bd9 commit 1205ff2

File tree

5 files changed

+63
-0
lines changed

5 files changed

+63
-0
lines changed

.pom.xml.swp

12 KB
Binary file not shown.

feature-bundle/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/target/
2+
.settings/
3+
.classpath
4+
.project
5+

feature-bundle/pom.xml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<groupId>org.coderthoughts.subsystem.examples</groupId>
8+
<artifactId>reactor</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
11+
</parent>
12+
13+
<artifactId>feature-bundle</artifactId>
14+
<packaging>bundle</packaging>
15+
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.apache.felix</groupId>
20+
<artifactId>maven-bundle-plugin</artifactId>
21+
<version>2.5.5-SNAPSHOT</version>
22+
<extensions>true</extensions>
23+
<configuration>
24+
<instructions>
25+
<Bundle-Activator>org.coderthoughts.pizza.feature.Activator</Bundle-Activator>
26+
<Import-Package>*</Import-Package>
27+
<Export-Package></Export-Package>
28+
<Private-Package>org.coderthoughts.pizza.feature</Private-Package>
29+
</instructions>
30+
</configuration>
31+
</plugin>
32+
</plugins>
33+
</build>
34+
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.osgi</groupId>
38+
<artifactId>org.osgi.core</artifactId>
39+
<version>6.0.0</version>
40+
</dependency>
41+
</dependencies>
42+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package org.coderthoughts.pizza.feature;
2+
3+
import org.osgi.framework.BundleActivator;
4+
import org.osgi.framework.BundleContext;
5+
6+
public class Activator implements BundleActivator {
7+
@Override
8+
public void start(BundleContext context) throws Exception {
9+
System.out.println("Feature started");
10+
}
11+
12+
@Override
13+
public void stop(BundleContext context) throws Exception {
14+
}
15+
}

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<module>svc-bundle</module>
1414
<module>svc-bundle2</module>
1515
<module>use-bundle</module>
16+
<module>feature-bundle</module>
1617
<module>feature-subsystem</module>
1718
</modules>
1819

0 commit comments

Comments
 (0)