|
23 | 23 | <groupId>org.apache.felix</groupId> |
24 | 24 | <artifactId>felix-parent</artifactId> |
25 | 25 | <version>6</version> |
26 | | - <relativePath>../pom/pom.xml</relativePath> |
| 26 | + <relativePath>../../pom/pom.xml</relativePath> |
27 | 27 | </parent> |
28 | 28 |
|
29 | 29 | <name>Apache Felix Converter</name> |
30 | 30 | <artifactId>org.apache.felix.converter</artifactId> |
31 | 31 | <version>1.0.11-SNAPSHOT</version> |
32 | | - <packaging>jar</packaging> |
| 32 | + <packaging>bundle</packaging> |
33 | 33 |
|
34 | 34 | <scm> |
35 | 35 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/converter/converter</connection> |
|
57 | 57 | <plugin> |
58 | 58 | <groupId>org.apache.felix</groupId> |
59 | 59 | <artifactId>maven-bundle-plugin</artifactId> |
60 | | - <version>4.2.0</version> |
| 60 | + <version>4.2.1</version> |
| 61 | + <extensions>true</extensions> |
61 | 62 | <executions> |
62 | 63 | <execution> |
63 | 64 | <id>bundle</id> |
64 | | - <phase>package</phase> |
65 | 65 | <goals> |
66 | 66 | <goal>bundle</goal> |
67 | 67 | </goals> |
| 68 | + <configuration> |
| 69 | + <instructions> |
| 70 | + <Export-Package> |
| 71 | + org.osgi.util.converter;-split-package:=merge-first |
| 72 | + </Export-Package> |
| 73 | + <Import-Package> |
| 74 | + org.osgi.util.converter, |
| 75 | + * |
| 76 | + </Import-Package> |
| 77 | + </instructions> |
| 78 | + </configuration> |
68 | 79 | </execution> |
69 | 80 | <execution> |
70 | | - <id>baseline</id> |
| 81 | + <id>allbundle</id> |
71 | 82 | <goals> |
72 | | - <goal>baseline</goal> |
| 83 | + <goal>bundle</goal> |
73 | 84 | </goals> |
| 85 | + <configuration> |
| 86 | + <classifier>all</classifier> |
| 87 | + <instructions> |
| 88 | + <Bundle-Name> |
| 89 | + ${project.name} (All In One) |
| 90 | + </Bundle-Name> |
| 91 | + <Bundle-Version> |
| 92 | + ${project.version}-all |
| 93 | + </Bundle-Version> |
| 94 | + <Export-Package> |
| 95 | + org.osgi.util.converter, |
| 96 | + org.osgi.util.function |
| 97 | + </Export-Package> |
| 98 | + <Import-Package> |
| 99 | + org.osgi.util.converter, |
| 100 | + org.osgi.util.function, |
| 101 | + * |
| 102 | + </Import-Package> |
| 103 | + <Embed-Dependency> |
| 104 | + org.osgi.util.function;inline=true |
| 105 | + </Embed-Dependency> |
| 106 | + <_removeheaders> |
| 107 | + Embed-Dependency |
| 108 | + </_removeheaders> |
| 109 | + </instructions> |
| 110 | + </configuration> |
74 | 111 | </execution> |
75 | 112 | </executions> |
76 | | - <configuration> |
77 | | - <instructions> |
78 | | - <Export-Package> |
79 | | - org.osgi.util.function, |
80 | | - org.osgi.util.converter;-split-package:=merge-first |
81 | | - </Export-Package> |
82 | | - <Import-Package> |
83 | | - org.osgi.util.function, |
84 | | - org.osgi.util.converter, |
85 | | - * |
86 | | - </Import-Package> |
87 | | - </instructions> |
88 | | - </configuration> |
89 | 113 | </plugin> |
90 | 114 | <plugin> |
91 | 115 | <groupId>org.apache.rat</groupId> |
|
107 | 131 | <groupId>org.osgi</groupId> |
108 | 132 | <artifactId>org.osgi.util.function</artifactId> |
109 | 133 | <version>1.0.0</version> |
| 134 | + <scope>provided</scope> |
110 | 135 | </dependency> |
111 | 136 |
|
112 | 137 | <dependency> |
|
0 commit comments