Skip to content

Commit

Permalink
Adding back the spring framework jars needed for soap
Browse files Browse the repository at this point in the history
  • Loading branch information
vhalbert committed Feb 24, 2016
1 parent 43d08e1 commit cc63d60
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 3 deletions.
4 changes: 4 additions & 0 deletions connectors/connector-ws/kits/jboss-as7-dist.xml
Expand Up @@ -70,6 +70,10 @@
<include>org.springframework:spring-beans</include>
<include>org.springframework:spring-context</include>
<include>org.springframework:spring-core</include>
<include>org.springframework:spring-asm</include>
<include>org.springframework:spring-expression</include>
<include>org.springframework:spring-aop</include>
<include>org.springframework:spring-tx</include>
</includes>
</dependencySet>
<dependencySet>
Expand Down
Expand Up @@ -7,12 +7,10 @@
<resource-root path="spring-beans-${version.org.springframework}.jar"/>
<resource-root path="spring-context-${version.org.springframework}.jar"/>
<resource-root path="spring-core-${version.org.springframework}.jar"/>
<!--
<resource-root path="spring-asm.jar"/>
<resource-root path="spring-aop.jar"/>
<resource-root path="spring-expression.jar"/>
<resource-root path="spring-tx.jar"/>
-->
</resources>
<dependencies>
<module name="javax.api"/>
Expand Down
16 changes: 16 additions & 0 deletions connectors/connector-ws/pom.xml
Expand Up @@ -111,6 +111,22 @@
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
24 changes: 23 additions & 1 deletion pom.xml
Expand Up @@ -81,7 +81,9 @@
<version.org.apache.httpcomponents.httpcore-nio>4.2.4</version.org.apache.httpcomponents.httpcore-nio>
<version.org.apache.httpcomponents.httpasyncclient>4.0-beta3</version.org.apache.httpcomponents.httpasyncclient>



<version.org.asm.springframework>3.1.4.RELEASE</version.org.asm.springframework>

<!-- connector specific dependencies included in kit -->


Expand Down Expand Up @@ -1639,6 +1641,26 @@
<artifactId>spring-core</artifactId>
<version>${version.org.springframework}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${version.org.springframework}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-asm</artifactId>
<version>${version.org.asm.springframework}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>${version.org.springframework}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${version.org.springframework}</version>
</dependency>
<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-jdbc</artifactId>
Expand Down

0 comments on commit cc63d60

Please sign in to comment.