Skip to content

Commit 2620870

Browse files
committed
jsr354-api/issues/63 Added OSGI and Java 9 module info.
1 parent 7081c27 commit 2620870

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

bnd.bnd

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
-buildpath: \
2+
osgi.annotation; version=6.0.0,\
3+
osgi.core; version=6.0,\
4+
osgi.cmpn; version=6.0
5+
6+
-testpath: \
7+
${junit}
8+
9+
javac.source: 1.8
10+
javac.target: 1.8
11+
12+
Automatic-Module-Name: javax.money
13+
Bundle-Version: ${version}.${tstamp}
14+
Bundle-Name: JavaMoney API
15+
Bundle-SymbolicName: javax.money
16+
Bundle-Description: JavaMoney - API
17+
Bundle-Category: Implementation
18+
Bundle-Copyright: (C) Credit Suisse
19+
Bundle-License: JSR 354 Spec Evaluation/Implementation License
20+
Bundle-Vendor: Credit Suisse
21+
Bundle-ContactAddress: [email protected]
22+
Bundle-DocURL: http://javamoney.org
23+
Export-Package: \
24+
javax.money,\
25+
javax.money.spi,\
26+
javax.money.convert,\
27+
javax.money.format
28+

pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,49 @@
275275
</repository>
276276
</repositories>
277277

278+
<build>
279+
<pluginManagement>
280+
<plugins>
281+
<plugin>
282+
<groupId>biz.aQute.bnd</groupId>
283+
<artifactId>bnd-maven-plugin</artifactId>
284+
<version>3.3.0</version>
285+
<dependencies>
286+
<dependency>
287+
<groupId>ch.qos.logback</groupId>
288+
<artifactId>logback-core</artifactId>
289+
<version>1.1.3</version>
290+
</dependency>
291+
<dependency>
292+
<groupId>org.slf4j</groupId>
293+
<artifactId>slf4j-api</artifactId>
294+
<version>1.7.13</version>
295+
</dependency>
296+
</dependencies>
297+
<executions>
298+
<execution>
299+
<goals>
300+
<goal>bnd-process</goal>
301+
</goals>
302+
</execution>
303+
</executions>
304+
</plugin>
305+
</plugins>
306+
</pluginManagement>
307+
<plugins>
308+
<plugin>
309+
<groupId>biz.aQute.bnd</groupId>
310+
<artifactId>bnd-maven-plugin</artifactId>
311+
<executions>
312+
<execution>
313+
<goals>
314+
<goal>bnd-process</goal>
315+
</goals>
316+
</execution>
317+
</executions>
318+
</plugin>
319+
</plugins>
320+
</build>
278321

279322
<profiles>
280323
<profile>

0 commit comments

Comments
 (0)