diff options
Diffstat (limited to '')
-rw-r--r-- | sca-java-1.x/trunk/tutorials/travelsample/distribution/pom.xml | 28 | ||||
-rw-r--r-- | sca-java-1.x/trunk/tutorials/travelsample/distribution/src/main/assembly/src.xml | 36 |
2 files changed, 63 insertions, 1 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/distribution/pom.xml b/sca-java-1.x/trunk/tutorials/travelsample/distribution/pom.xml index 0f8f681c64..b112773d31 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/distribution/pom.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/distribution/pom.xml @@ -31,6 +31,34 @@ <name>Apache Tuscany SCA Tours Distribution</name> <packaging>pom</packaging> + <dependencies> + <dependency> + <groupId>com.sun.xml.ws</groupId> + <artifactId>jaxws-tools</artifactId> + <version>2.1.7</version> + <scope>runtime</scope> + <exclusions> + <!-- exclude the following because it's already included in binaries/target/jaxws --> + <exclusion> + <groupId>com.sun.xml.ws</groupId> + <artifactId>jaxws-rt</artifactId> + </exclusion> + <!-- exclude the following because it's part of the Tuscany SCA binary distro --> + <exclusion> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-xjc</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>runtime</scope> + </dependency> + </dependencies> + <build> <plugins> <plugin> diff --git a/sca-java-1.x/trunk/tutorials/travelsample/distribution/src/main/assembly/src.xml b/sca-java-1.x/trunk/tutorials/travelsample/distribution/src/main/assembly/src.xml index 28ffcf7e3b..36e67f6d77 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/distribution/src/main/assembly/src.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/distribution/src/main/assembly/src.xml @@ -44,7 +44,7 @@ </excludes> </fileSet> - <!-- Add the text files to the top-level directroy --> + <!-- Add the text files to the top-level directory --> <fileSet> <directory>src/main/release</directory> <outputDirectory></outputDirectory> @@ -57,6 +57,40 @@ <include>RELEASE_NOTES</include> </includes> </fileSet> + + <!-- Add binary dependencies to the lib directory --> + <fileSet> + <directory>../binaries/target</directory> + <outputDirectory>lib</outputDirectory> + <includes> + <include>openejb/**/*</include> + <include>jaxws/**/*</include> + </includes> + </fileSet> </fileSets> + <dependencySets> + <!-- Add tools dependencies to the lib directory --> + <dependencySet> + <useProjectArtifact>false</useProjectArtifact> + <outputDirectory>lib/jaxws</outputDirectory> + <unpack>false</unpack> + <includes> + <include>com.sun.xml.ws:jaxws-tools</include> + </includes> + <scope>runtime</scope> + </dependencySet> + + <!-- Add tools dependencies to the lib directory --> + <dependencySet> + <useProjectArtifact>false</useProjectArtifact> + <outputDirectory>lib/junit</outputDirectory> + <unpack>false</unpack> + <includes> + <include>junit:junit</include> + </includes> + <scope>runtime</scope> + </dependencySet> + </dependencySets> + </assembly> |