-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change javax.xml.soap import-package version #407
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we really want dynamic import. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we don't use class.forName() within "spring.framework"? Since this is an orbit and dynamic import was there for a long we will skip this at the moment. We will address this with wso2/carbon-kernel#2582 |
||
<!-- 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> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
org.springframework.beans.BeanInfoFactory=org.springframework.beans.ExtendedBeanInfoFactory |
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 |
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 |
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 |
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> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better if we put the respective imports by name and version ranges.