diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-03 20:16:22 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-03 20:16:22 +0000 |
commit | 2d8bd12810fa007f2c95e7fc8ef4c4f7a73423e8 (patch) | |
tree | 1d08e9ae463dd4de715f89e8e3d185005d0c7263 /sca-java-1.x/branches | |
parent | f46949c28997efe81d30555b8864fdd8235ed22f (diff) |
TUSCANY-3765: Ensure all classes produced by the build are compatible with JDK 5
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1030643 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches')
-rw-r--r-- | sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/CHANGES | 1 | ||||
-rw-r--r-- | sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml | 68 |
2 files changed, 68 insertions, 1 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/CHANGES b/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/CHANGES index 3b1cb53114..9b21abb2ee 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/CHANGES +++ b/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/CHANGES @@ -2,6 +2,7 @@ Changes With Apache Tuscany SCA 1.6.1 November 2010 ===================================================
Fix the following JIRA issues (http://issues.apache.org/jira/browse/TUSCANY):
+TUSCANY-3765 itest/wsdlgen creates classes that don't run on JDK 5
TUSCANY-3764 Some LICENSE/NOTICE files in individual module jars aren't consistent with the LICENSE/NOTICE files in the binary distribution
TUSCANY-3762 Tuscany SCA Eclipse plugin doesn't install correctly
TUSCANY-3761 Using node-launcher to launch the domain manager doesn't work
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml index b1150145bf..ee6237e12c 100644 --- a/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml +++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/wsdlgen/pom.xml @@ -206,8 +206,74 @@ <sei>helloworld.HelloWorldImpl</sei> <genWsdl>true</genWsdl> <keep>true</keep> + <!-- TUSCANY-3765: avoid using class files that run only on JDK 6 --> + <destDir>${basedir}/target/unused-wsgen-classes</destDir> + <sourceDestDir>${basedir}/target/jaxws-source</sourceDestDir> </configuration> - </plugin> + </plugin> + <!-- TUSCANY-3765: produce JDK 5-compatible JAX-WS class files --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.0</version> + <executions> + <execution> + <id>add-test-source</id> + <phase>generate-test-sources</phase> + <goals> + <goal>add-test-source</goal> + </goals> + <configuration> + <sources> + <source>${basedir}/target/jaxws-source</source> + </sources> + </configuration> + </execution> + </executions> + </plugin> + <!-- TUSCANY-3765: copy JDK 5-compatible JAX-WS class files to the correct location --> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <executions> + <execution> + <id>copy-jaxws-classes</id> + <phase>process-test-classes</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${basedir}/target/classes/helloworld</outputDirectory> + <resources> + <resource> + <directory>${basedir}/target/test-classes/helloworld</directory> + <includes> + <include>jaxws/**</include> + </includes> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + <!-- TUSCANY-3765: delete directories containing unused class files --> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>cleanup-jaxws-classes</id> + <phase>process-test-classes</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <tasks> + <delete dir="${basedir}/target/unused-wsgen-classes" includeemptydirs="true"/> + <delete dir="${basedir}/target/test-classes/helloworld/jaxws" includeemptydirs="true"/> + </tasks> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> |