File tree 5 files changed +63
-0
lines changed
src/main/java/org/coderthoughts/pizza/feature
5 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ /target /
2
+ .settings /
3
+ .classpath
4
+ .project
5
+
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 13
13
<module >svc-bundle</module >
14
14
<module >svc-bundle2</module >
15
15
<module >use-bundle</module >
16
+ <module >feature-bundle</module >
16
17
<module >feature-subsystem</module >
17
18
</modules >
18
19
You can’t perform that action at this time.
0 commit comments