-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #407 from wijith7/master-2
Change javax.xml.soap import-package version
- Loading branch information
Showing
6 changed files
with
209 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<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/maven-v4_0_0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.springframework.ws.wso2</groupId> | ||
<artifactId>spring.framework</artifactId> | ||
<packaging>bundle</packaging> | ||
<name>spring.framework.wso2</name> | ||
<version>3.2.9.wso2v2</version> | ||
<description> | ||
This bundle will export packages from spring framework | ||
</description> | ||
<url>http://wso2.org</url> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>wso2.releases</id> | ||
<name>WSO2 internal Repository</name> | ||
<url>http://maven.wso2.org/nexus/content/repositories/releases/</url> | ||
</repository> | ||
|
||
<snapshotRepository> | ||
<id>wso2.snapshots</id> | ||
<name>WSO2 Snapshot Repository</name> | ||
<url>http://maven.wso2.org/nexus/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework.ws</groupId> | ||
<artifactId>spring-xml</artifactId> | ||
<version>2.1.4.RELEASE</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
<version>${version.spring}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
<version>${version.spring}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<version>${version.spring}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-web</artifactId> | ||
<version>${version.spring}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<version>1.4.0</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> | ||
<Bundle-Name>${project.artifactId}</Bundle-Name> | ||
<Export-Package> | ||
org.springframework.*; version=${exp.pkg.version.spring}, | ||
</Export-Package> | ||
<Import-Package> | ||
!org.springframework.*; version=${exp.pkg.version.spring}, | ||
javax.xml.stream.*; version="1.0.1", | ||
javax.xml.soap; version="0.0.0", | ||
*;resolution:=optional | ||
</Import-Package> | ||
<DynamicImport-Package>*</DynamicImport-Package> | ||
<!-- Exposing spring's SCI via OSGi ServiceLoader Mediator specification. Need SPI-Fly | ||
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability> | ||
<Provide-Capability>osgi.serviceloader; osgi.serviceloader=javax.servlet.ServletContainerInitializer</Provide-Capability> | ||
--> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<properties> | ||
<version.spring>3.2.9.RELEASE</version.spring> | ||
<exp.pkg.version.spring>3.2.9.wso2v1</exp.pkg.version.spring> | ||
</properties> | ||
</project> |
1 change: 1 addition & 0 deletions
1
spring-framework/3.2.9.wso2v2/src/main/resources/META-INF/spring.factories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
org.springframework.beans.BeanInfoFactory=org.springframework.beans.ExtendedBeanInfoFactory |
12 changes: 12 additions & 0 deletions
12
spring-framework/3.2.9.wso2v2/src/main/resources/META-INF/spring.handlers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# spring-beans | ||
http\://www.springframework.org/schema/c=org.springframework.beans.factory.xml.SimpleConstructorNamespaceHandler | ||
http\://www.springframework.org/schema/p=org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler | ||
http\://www.springframework.org/schema/util=org.springframework.beans.factory.xml.UtilNamespaceHandler | ||
# spring-context | ||
http\://www.springframework.org/schema/context=org.springframework.context.config.ContextNamespaceHandler | ||
http\://www.springframework.org/schema/jee=org.springframework.ejb.config.JeeNamespaceHandler | ||
http\://www.springframework.org/schema/lang=org.springframework.scripting.config.LangNamespaceHandler | ||
http\://www.springframework.org/schema/task=org.springframework.scheduling.config.TaskNamespaceHandler | ||
http\://www.springframework.org/schema/cache=org.springframework.cache.config.CacheNamespaceHandler | ||
# spring-aop | ||
http\://www.springframework.org/schema/aop=org.springframework.aop.config.AopNamespaceHandler |
51 changes: 51 additions & 0 deletions
51
spring-framework/3.2.9.wso2v2/src/main/resources/META-INF/spring.schemas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# spring-beans | ||
http\://www.springframework.org/schema/beans/spring-beans-2.0.xsd=org/springframework/beans/factory/xml/spring-beans-2.0.xsd | ||
http\://www.springframework.org/schema/beans/spring-beans-2.5.xsd=org/springframework/beans/factory/xml/spring-beans-2.5.xsd | ||
http\://www.springframework.org/schema/beans/spring-beans-3.0.xsd=org/springframework/beans/factory/xml/spring-beans-3.0.xsd | ||
http\://www.springframework.org/schema/beans/spring-beans-3.1.xsd=org/springframework/beans/factory/xml/spring-beans-3.1.xsd | ||
http\://www.springframework.org/schema/beans/spring-beans-3.2.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd | ||
http\://www.springframework.org/schema/beans/spring-beans.xsd=org/springframework/beans/factory/xml/spring-beans-3.2.xsd | ||
http\://www.springframework.org/schema/tool/spring-tool-2.0.xsd=org/springframework/beans/factory/xml/spring-tool-2.0.xsd | ||
http\://www.springframework.org/schema/tool/spring-tool-2.5.xsd=org/springframework/beans/factory/xml/spring-tool-2.5.xsd | ||
http\://www.springframework.org/schema/tool/spring-tool-3.0.xsd=org/springframework/beans/factory/xml/spring-tool-3.0.xsd | ||
http\://www.springframework.org/schema/tool/spring-tool-3.1.xsd=org/springframework/beans/factory/xml/spring-tool-3.1.xsd | ||
http\://www.springframework.org/schema/tool/spring-tool-3.2.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd | ||
http\://www.springframework.org/schema/tool/spring-tool.xsd=org/springframework/beans/factory/xml/spring-tool-3.2.xsd | ||
http\://www.springframework.org/schema/util/spring-util-2.0.xsd=org/springframework/beans/factory/xml/spring-util-2.0.xsd | ||
http\://www.springframework.org/schema/util/spring-util-2.5.xsd=org/springframework/beans/factory/xml/spring-util-2.5.xsd | ||
http\://www.springframework.org/schema/util/spring-util-3.0.xsd=org/springframework/beans/factory/xml/spring-util-3.0.xsd | ||
http\://www.springframework.org/schema/util/spring-util-3.1.xsd=org/springframework/beans/factory/xml/spring-util-3.1.xsd | ||
http\://www.springframework.org/schema/util/spring-util-3.2.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd | ||
http\://www.springframework.org/schema/util/spring-util.xsd=org/springframework/beans/factory/xml/spring-util-3.2.xsd | ||
# spring-context | ||
http\://www.springframework.org/schema/context/spring-context-2.5.xsd=org/springframework/context/config/spring-context-2.5.xsd | ||
http\://www.springframework.org/schema/context/spring-context-3.0.xsd=org/springframework/context/config/spring-context-3.0.xsd | ||
http\://www.springframework.org/schema/context/spring-context-3.1.xsd=org/springframework/context/config/spring-context-3.1.xsd | ||
http\://www.springframework.org/schema/context/spring-context-3.2.xsd=org/springframework/context/config/spring-context-3.2.xsd | ||
http\://www.springframework.org/schema/context/spring-context.xsd=org/springframework/context/config/spring-context-3.2.xsd | ||
http\://www.springframework.org/schema/jee/spring-jee-2.0.xsd=org/springframework/ejb/config/spring-jee-2.0.xsd | ||
http\://www.springframework.org/schema/jee/spring-jee-2.5.xsd=org/springframework/ejb/config/spring-jee-2.5.xsd | ||
http\://www.springframework.org/schema/jee/spring-jee-3.0.xsd=org/springframework/ejb/config/spring-jee-3.0.xsd | ||
http\://www.springframework.org/schema/jee/spring-jee-3.1.xsd=org/springframework/ejb/config/spring-jee-3.1.xsd | ||
http\://www.springframework.org/schema/jee/spring-jee-3.2.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd | ||
http\://www.springframework.org/schema/jee/spring-jee.xsd=org/springframework/ejb/config/spring-jee-3.2.xsd | ||
http\://www.springframework.org/schema/lang/spring-lang-2.0.xsd=org/springframework/scripting/config/spring-lang-2.0.xsd | ||
http\://www.springframework.org/schema/lang/spring-lang-2.5.xsd=org/springframework/scripting/config/spring-lang-2.5.xsd | ||
http\://www.springframework.org/schema/lang/spring-lang-3.0.xsd=org/springframework/scripting/config/spring-lang-3.0.xsd | ||
http\://www.springframework.org/schema/lang/spring-lang-3.1.xsd=org/springframework/scripting/config/spring-lang-3.1.xsd | ||
http\://www.springframework.org/schema/lang/spring-lang-3.2.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd | ||
http\://www.springframework.org/schema/lang/spring-lang.xsd=org/springframework/scripting/config/spring-lang-3.2.xsd | ||
http\://www.springframework.org/schema/task/spring-task-3.0.xsd=org/springframework/scheduling/config/spring-task-3.0.xsd | ||
http\://www.springframework.org/schema/task/spring-task-3.1.xsd=org/springframework/scheduling/config/spring-task-3.1.xsd | ||
http\://www.springframework.org/schema/task/spring-task-3.2.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd | ||
http\://www.springframework.org/schema/task/spring-task.xsd=org/springframework/scheduling/config/spring-task-3.2.xsd | ||
http\://www.springframework.org/schema/cache/spring-cache-3.1.xsd=org/springframework/cache/config/spring-cache-3.1.xsd | ||
http\://www.springframework.org/schema/cache/spring-cache-3.2.xsd=org/springframework/cache/config/spring-cache-3.2.xsd | ||
http\://www.springframework.org/schema/cache/spring-cache.xsd=org/springframework/cache/config/spring-cache-3.2.xsd | ||
# spring-aop | ||
http\://www.springframework.org/schema/aop/spring-aop-2.0.xsd=org/springframework/aop/config/spring-aop-2.0.xsd | ||
http\://www.springframework.org/schema/aop/spring-aop-2.5.xsd=org/springframework/aop/config/spring-aop-2.5.xsd | ||
http\://www.springframework.org/schema/aop/spring-aop-3.0.xsd=org/springframework/aop/config/spring-aop-3.0.xsd | ||
http\://www.springframework.org/schema/aop/spring-aop-3.1.xsd=org/springframework/aop/config/spring-aop-3.1.xsd | ||
http\://www.springframework.org/schema/aop/spring-aop-3.2.xsd=org/springframework/aop/config/spring-aop-3.2.xsd | ||
http\://www.springframework.org/schema/aop/spring-aop.xsd=org/springframework/aop/config/spring-aop-3.2.xsd |
37 changes: 37 additions & 0 deletions
37
spring-framework/3.2.9.wso2v2/src/main/resources/META-INF/spring.tooling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Tooling related information for the beans namespace | ||
http\://www.springframework.org/schema/beans@name=beans Namespace | ||
http\://www.springframework.org/schema/beans@prefix=beans | ||
http\://www.springframework.org/schema/beans@icon=org/springframework/beans/factory/xml/spring-beans.gif | ||
|
||
# Tooling related information for the util namespace | ||
http\://www.springframework.org/schema/util@name=util Namespace | ||
http\://www.springframework.org/schema/util@prefix=util | ||
http\://www.springframework.org/schema/util@icon=org/springframework/beans/factory/xml/spring-util.gif | ||
# Tooling related information for the context namespace | ||
http\://www.springframework.org/schema/context@name=context Namespace | ||
http\://www.springframework.org/schema/context@prefix=context | ||
http\://www.springframework.org/schema/context@icon=org/springframework/context/config/spring-context.gif | ||
|
||
# Tooling related information for the jee namespace | ||
http\://www.springframework.org/schema/jee@name=jee Namespace | ||
http\://www.springframework.org/schema/jee@prefix=jee | ||
http\://www.springframework.org/schema/jee@icon=org/springframework/ejb/config/spring-jee.gif | ||
|
||
# Tooling related information for the scheduling namespace | ||
http\://www.springframework.org/schema/task@name=task Namespace | ||
http\://www.springframework.org/schema/task@prefix=task | ||
http\://www.springframework.org/schema/task@icon=org/springframework/scheduling/config/spring-task.gif | ||
|
||
# Tooling related information for the lang namespace | ||
http\://www.springframework.org/schema/lang@name=lang Namespace | ||
http\://www.springframework.org/schema/lang@prefix=lang | ||
http\://www.springframework.org/schema/lang@icon=org/springframework/scripting/config/spring-lang.gif | ||
|
||
# Tooling related information for the cache namespace | ||
http\://www.springframework.org/schema/cache@name=cache Namespace | ||
http\://www.springframework.org/schema/cache@prefix=cache | ||
http\://www.springframework.org/schema/cache@icon=org/springframework/cache/config/spring-cache.gif | ||
# Tooling related information for the aop namespace | ||
http\://www.springframework.org/schema/aop@name=aop Namespace | ||
http\://www.springframework.org/schema/aop@prefix=aop | ||
http\://www.springframework.org/schema/aop@icon=org/springframework/aop/config/spring-aop.gif |
10 changes: 10 additions & 0 deletions
10
spring-framework/3.2.9.wso2v2/src/main/resources/META-INF/web-fragment.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<web-fragment xmlns="http://java.sun.com/xml/ns/javaee" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-fragment_3_0.xsd" | ||
version="3.0" metadata-complete="true"> | ||
|
||
<name>spring_web</name> | ||
<distributable/> | ||
|
||
</web-fragment> |