File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 34
34
</dependencies >
35
35
36
36
<build >
37
+ <pluginManagement >
38
+ <plugins >
39
+ <plugin >
40
+ <artifactId >maven-jar-plugin</artifactId >
41
+ <configuration >
42
+ <archive >
43
+ <manifestFile >${project.build.outputDirectory} /META-INF/MANIFEST.MF</manifestFile >
44
+ </archive >
45
+ </configuration >
46
+ </plugin >
47
+ <plugin >
48
+ <groupId >org.apache.felix</groupId >
49
+ <artifactId >maven-bundle-plugin</artifactId >
50
+ <version >5.1.9</version >
51
+ <configuration >
52
+ <instructions >
53
+ <Import-Package >
54
+ !java
55
+ </Import-Package >
56
+ <Export-Package >
57
+ {local-packages}
58
+ </Export-Package >
59
+ </instructions >
60
+ </configuration >
61
+ <executions >
62
+ <execution >
63
+ <id >bundle-manifest</id >
64
+ <phase >process-classes</phase >
65
+ <goals >
66
+ <goal >manifest</goal >
67
+ </goals >
68
+ </execution >
69
+ </executions >
70
+ </plugin >
71
+ </plugins >
72
+ </pluginManagement >
37
73
<plugins >
38
74
<plugin >
39
75
<groupId >org.apache.maven.plugins</groupId >
105
141
<goals >deploy</goals >
106
142
</configuration >
107
143
</plugin >
144
+ <plugin >
145
+ <groupId >org.apache.felix</groupId >
146
+ <artifactId >maven-bundle-plugin</artifactId >
147
+ </plugin >
108
148
</plugins >
109
149
</build >
110
150
You can’t perform that action at this time.
0 commit comments