SWS-233: OSGi bundles
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.springframework.ws</groupId>
|
||||
<artifactId>spring-ws-support</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<packaging>bundle</packaging>
|
||||
<name>Spring WS Support</name>
|
||||
<description>Spring Web Services Support package.</description>
|
||||
<repositories>
|
||||
@@ -57,6 +57,36 @@
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.felix</groupId>
|
||||
<artifactId>maven-bundle-plugin</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
|
||||
<Export-Package>org.springframework.ws*</Export-Package>
|
||||
<Import-Package>
|
||||
org.apache.commons.logging*,
|
||||
javax.activation*,
|
||||
javax.jms*,
|
||||
javax.mail*,
|
||||
org.springframework.beans*,
|
||||
org.springframework.core*,
|
||||
org.springframework.util*,
|
||||
org.springframework.ws.transport*,
|
||||
*;resolution:=optional
|
||||
</Import-Package>
|
||||
<Implementation-Title>${pom.name}</Implementation-Title>
|
||||
<Implementation-Version>${pom.version}</Implementation-Version>
|
||||
<Spring-WS-Version>${pom.version}</Spring-WS-Version>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<!-- Spring-WS dependencies -->
|
||||
<dependency>
|
||||
|
||||
Reference in New Issue
Block a user