Author: objectiser
Date: 2010-11-25 08:20:36 -0500 (Thu, 25 Nov 2010)
New Revision: 1159
Added:
dsp/trunk/samples/deployer/lib/
dsp/trunk/samples/deployer/lib/commons-fileupload-1.2.2.jar
dsp/trunk/samples/deployer/lib/commons-io-1.3.2.jar
dsp/trunk/samples/deployer/lib/dsp-api-1.0.0-SNAPSHOT.jar
dsp/trunk/samples/deployer/lib/dsp-jboss-1.0.0-SNAPSHOT.jar
Removed:
dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/commons-fileupload-1.2.2.jar
dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/commons-io-1.3.2.jar
dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/dsp-api-1.0.0-SNAPSHOT.jar
dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/dsp-jboss-1.0.0-SNAPSHOT.jar
Modified:
dsp/trunk/samples/deployer/.settings/org.eclipse.wst.common.component
dsp/trunk/samples/deployer/pom.xml
Log:
Fixed second issue related to the web project needing the libs. Currently web project uses
jars in the top level lib folder, but maven built war will package latest dsp jars.
Hopefully the web project can be sorted later to use latest jars, but that might mean
making it dependent upon Eclipse projects for the jars.
Modified: dsp/trunk/samples/deployer/.settings/org.eclipse.wst.common.component
===================================================================
--- dsp/trunk/samples/deployer/.settings/org.eclipse.wst.common.component 2010-11-25
13:07:37 UTC (rev 1158)
+++ dsp/trunk/samples/deployer/.settings/org.eclipse.wst.common.component 2010-11-25
13:20:36 UTC (rev 1159)
@@ -3,6 +3,7 @@
<wb-module deploy-name="DSPExample">
<wb-resource deploy-path="/WEB-INF/classes"
source-path="/src/main/java"/>
<wb-resource deploy-path="/"
source-path="/src/main/webapp"/>
+ <wb-resource deploy-path="/WEB-INF/lib"
source-path="/lib"/>
<property name="context-root" value="DSPExample"/>
<property name="java-output-path"
value="/DSPExample/build/classes"/>
</wb-module>
Added: dsp/trunk/samples/deployer/lib/commons-fileupload-1.2.2.jar
===================================================================
(Binary files differ)
Property changes on: dsp/trunk/samples/deployer/lib/commons-fileupload-1.2.2.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: dsp/trunk/samples/deployer/lib/commons-io-1.3.2.jar
===================================================================
(Binary files differ)
Property changes on: dsp/trunk/samples/deployer/lib/commons-io-1.3.2.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: dsp/trunk/samples/deployer/lib/dsp-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: dsp/trunk/samples/deployer/lib/dsp-api-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: dsp/trunk/samples/deployer/lib/dsp-jboss-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: dsp/trunk/samples/deployer/lib/dsp-jboss-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: dsp/trunk/samples/deployer/pom.xml
===================================================================
--- dsp/trunk/samples/deployer/pom.xml 2010-11-25 13:07:37 UTC (rev 1158)
+++ dsp/trunk/samples/deployer/pom.xml 2010-11-25 13:20:36 UTC (rev 1159)
@@ -16,21 +16,29 @@
<dependencies>
<dependency>
- <groupId>wsdl4j</groupId>
- <artifactId>wsdl4j</artifactId>
- <version>${wsdl4j.version}</version>
- <scope>provided</scope>
+ <groupId>org.jboss.soa.dsp</groupId>
+ <artifactId>dsp-api</artifactId>
+ <version>${dsp.version}</version>
</dependency>
<dependency>
+ <groupId>org.jboss.soa.dsp</groupId>
+ <artifactId>dsp-jboss</artifactId>
+ <version>${dsp.version}</version>
+ </dependency>
+ <dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.2</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
+ </dependency>
+ <dependency>
+ <groupId>wsdl4j</groupId>
+ <artifactId>wsdl4j</artifactId>
+ <version>${wsdl4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -45,16 +53,6 @@
<version>2.5</version>
<scope>provided</scope>
</dependency>
- <dependency>
- <groupId>org.jboss.soa.dsp</groupId>
- <artifactId>dsp-api</artifactId>
- <version>${dsp.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.soa.dsp</groupId>
- <artifactId>dsp-jboss</artifactId>
- <version>${dsp.version}</version>
- </dependency>
</dependencies>
<build>
Deleted:
dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/commons-fileupload-1.2.2.jar
===================================================================
(Binary files differ)
Deleted: dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/commons-io-1.3.2.jar
===================================================================
(Binary files differ)
Deleted:
dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/dsp-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Deleted:
dsp/trunk/samples/deployer/src/main/webapp/WEB-INF/lib/dsp-jboss-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Show replies by date