Author: dkulp
Date: Thu Apr 17 10:58:32 2008
New Revision: 649209
URL: http://svn.apache.org/viewvc?rev=649209&view=rev
Log:
Remove more incubator things
Modified:
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl.bat
incubator/cxf/branches/2.0.x-fixes/systests/pom.xml
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/DBServiceFaultBean.java.source
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/FaultDetail.java.source
Modified:
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl?rev=649209&r1=649208&r2=649209&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl
(original)
+++
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl
Thu Apr 17 10:58:32 2008
@@ -37,16 +37,16 @@
me=`basename $0`
cxf_home=$CXF_HOME
-if [ ! -f $cxf_home/lib/cxf-manifest-incubator.jar ]; then
+if [ ! -f $cxf_home/lib/cxf-manifest.jar ]; then
cxf_home=`dirname $0`/..
fi
-cxf_jar=$cxf_home/lib/cxf-manifest-incubator.jar
+cxf_jar=$cxf_home/lib/cxf-manifest.jar
if [ ! -f $cxf_jar ]; then
if [ ! -f ${cxf_home}/../../target/srcbuild_env ]; then
- echo "ERROR: Unable to find cxf-manifest-incubator.jar in
$cxf_home/lib"
+ echo "ERROR: Unable to find cxf-manifest.jar in $cxf_home/lib"
exit 1
else
. ${cxf_home}/../../target/srcbuild_env
Modified:
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl.bat
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl.bat?rev=649209&r1=649208&r2=649209&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl.bat
(original)
+++
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/bin/java2wsdl.bat
Thu Apr 17 10:58:32 2008
@@ -32,9 +32,9 @@
set SUN_TOOL_PATH=%JAVA_HOME%\lib\tools.jar;
-if not exist "%CXF_HOME%\lib\cxf-manifest-incubator.jar" goto no_cxf_jar
+if not exist "%CXF_HOME%\lib\cxf-manifest.jar" goto no_cxf_jar
-set CXF_JAR=%CXF_HOME%\lib\cxf-manifest-incubator.jar
+set CXF_JAR=%CXF_HOME%\lib\cxf-manifest.jar
"%JAVA_HOME%\bin\java" -cp "%CXF_JAR%;%SUN_TOOL_PATH%;%CLASSPATH%"
-Djava.util.logging.config.file="%CXF_HOME%\etc\logging.properties"
org.apache.cxf.tools.java2wsdl.JavaToWSDL %*
@@ -43,7 +43,7 @@
goto end
:no_cxf_jar
-echo ERROR: Unable to find cxf-manifest-incubator.jar in %cxf_home/lib
+echo ERROR: Unable to find cxf-manifest.jar in %cxf_home/lib
goto end
:no_java_home
Modified: incubator/cxf/branches/2.0.x-fixes/systests/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/systests/pom.xml?rev=649209&r1=649208&r2=649209&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/systests/pom.xml (original)
+++ incubator/cxf/branches/2.0.x-fixes/systests/pom.xml Thu Apr 17 10:58:32 2008
@@ -118,63 +118,6 @@
</dependency>
</dependencies>
</profile>
- <profile>
- <id>test.remoteresources</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-remote-resources-plugin</artifactId>
- <version>1.0-alpha-2-SNAPSHOT</version>
- <executions>
- <execution>
- <id>do-apache-stuff</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>process</goal>
- </goals>
- <configuration>
- <resourceBundles>
-
<resourceBundle>org.apache:apache-jar-resource-bundle:1.1-SNAPSHOT</resourceBundle>
-
<resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.0</resourceBundle>
- </resourceBundles>
- <properties>
- <addLicense>true</addLicense>
- </properties>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>test-jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>apache.snapshots</id>
- <name>Apache SNAPSHOT repository</name>
-
<url>http://people.apache.org/repo/m2-snapshot-repository/</url>
- </repository>
- </repositories>
- <pluginRepositories>
- <pluginRepository>
- <releases>
- <enabled>false</enabled>
- </releases>
- <snapshots />
- <id>apache.snapshots</id>
- <name>Apache Maven Snapshot Repository</name>
-
<url>http://people.apache.org/repo/m2-snapshot-repository/</url>
- </pluginRepository>
- </pluginRepositories>
- </profile>
</profiles>
<dependencies>
<dependency>
Modified:
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/DBServiceFaultBean.java.source
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/DBServiceFaultBean.java.source?rev=649209&r1=649208&r2=649209&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/DBServiceFaultBean.java.source
(original)
+++
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/DBServiceFaultBean.java.source
Thu Apr 17 10:58:32 2008
@@ -7,9 +7,6 @@
import javax.xml.bind.annotation.XmlType;
/**
- * This class was generated by the CXF 2.0-incubator-SNAPSHOT
- * Wed May 09 17:18:10 CST 2007
- * Generated source version: 2.0-incubator-SNAPSHOT
*
*/
Modified:
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/FaultDetail.java.source
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/FaultDetail.java.source?rev=649209&r1=649208&r2=649209&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/FaultDetail.java.source
(original)
+++
incubator/cxf/branches/2.0.x-fixes/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/FaultDetail.java.source
Thu Apr 17 10:58:32 2008
@@ -7,9 +7,6 @@
import javax.xml.bind.annotation.XmlType;
/**
- * This class was generated by the CXF 2.0-incubator-SNAPSHOT
- * Wed May 09 17:04:04 CST 2007
- * Generated source version: 2.0-incubator-SNAPSHOT
*
*/