Modified: incubator/cxf/trunk/tools/eclipse-plugin/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/eclipse-plugin/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/eclipse-plugin/pom.xml (original) +++ incubator/cxf/trunk/tools/eclipse-plugin/pom.xml Mon Nov 6 11:54:19 2006 @@ -16,9 +16,9 @@ specific language governing permissions and limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.cxf</groupId> <artifactId>cxf-eclipse-plugin</artifactId> @@ -38,50 +38,138 @@ </properties> <dependencies> - <dependency> - <groupId>${pom.groupId}</groupId> - <artifactId>cxf-tools-wsdl2java</artifactId> - <version>${project.version}</version> - </dependency> - - <dependency> - <groupId>${pom.groupId}</groupId> - <artifactId>cxf-tools-java2wsdl</artifactId> - <version>${project.version}</version> - </dependency> + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>cxf-tools-wsdl2java</artifactId> + <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.ws.commons</groupId> + <artifactId>XmlSchema</artifactId> + </exclusion> + <exclusion> + <groupId>javax.annotation</groupId> + <artifactId>jsr250-api</artifactId> + </exclusion> + <exclusion> + <groupId>javax.xml.soap</groupId> + <artifactId>saaj-api</artifactId> + </exclusion> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </exclusion> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + <exclusion> + <groupId>velocity</groupId> + <artifactId>velocity</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>cxf-tools-java2wsdl</artifactId> + <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.ws.commons</groupId> + <artifactId>XmlSchema</artifactId> + </exclusion> + <exclusion> + <groupId>javax.annotation</groupId> + <artifactId>jsr250-api</artifactId> + </exclusion> + <exclusion> + <groupId>javax.xml.soap</groupId> + <artifactId>saaj-api</artifactId> + </exclusion> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + </exclusion> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + <exclusion> + <groupId>velocity</groupId> + <artifactId>velocity</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>velocity</groupId> + <artifactId>velocity-dep</artifactId> + </dependency> </dependencies> <build> - <plugins> - <plugin> - <groupId>org.apache.cxf</groupId> - <artifactId>cxf-codegen-plugin</artifactId> - <version>${project.version}</version> - <executions> - <execution> - <id>eclipse-package</id> - <phase>package</phase> - <configuration> - <license>${basedir}/src/main/resources/LICENSE</license> - <excludes> - <exclude>spring</exclude> - <exclude>aopalliance</exclude> - <exclude>commons-logging</exclude> - <exclude>servlet-api</exclude> - <exclude>velocity-\d+\.\d+\.jar</exclude> - <exclude>saaj</exclude> - <exclude>jsr250</exclude> - <exclude>XmlSchema</exclude> - </excludes> - </configuration> - <goals> - <goal>eclipseplugin</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> + <plugins> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <version>${assembly.version}</version> + <executions> + <execution> + <id>distribution-package</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <descriptors> + <descriptor>src/main/assembly/plugin.xml</descriptor> + </descriptors> + <finalName>org.apache.cxf_${pom.version}</finalName> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-codegen-plugin</artifactId> + <version>${project.version}</version> + <executions> + <execution> + <id>eclipse-package</id> + <phase>compile</phase> + <goals> + <goal>eclipseplugin</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> </project>
Added: incubator/cxf/trunk/tools/eclipse-plugin/src/main/assembly/plugin.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/eclipse-plugin/src/main/assembly/plugin.xml?view=auto&rev=471852 ============================================================================== --- incubator/cxf/trunk/tools/eclipse-plugin/src/main/assembly/plugin.xml (added) +++ incubator/cxf/trunk/tools/eclipse-plugin/src/main/assembly/plugin.xml Mon Nov 6 11:54:19 2006 @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. +--> +<assembly> + <!-- id typically identifies the "type" (src vs bin etc) of the assembly --> + <id></id> + <includeBaseDirectory>false</includeBaseDirectory> + <formats> + <format>zip</format> + </formats> + + <fileSets> + <fileSet> + <directory>src/main/resources/</directory> + <outputDirectory></outputDirectory> + <includes> + <include>**/*</include> + </includes> + </fileSet> + <fileSet> + <directory>target</directory> + <outputDirectory></outputDirectory> + <includes> + <include>plugin.xml</include> + </includes> + </fileSet> + </fileSets> + <dependencySets> + <dependencySet> + <outputDirectory>lib</outputDirectory> + <unpack>false</unpack> + <scope>runtime</scope> + </dependencySet> + </dependencySets> +</assembly> Propchange: incubator/cxf/trunk/tools/eclipse-plugin/src/main/assembly/plugin.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/eclipse-plugin/src/main/assembly/plugin.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/eclipse-plugin/src/main/assembly/plugin.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Added: incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/DISCLAIMER URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/DISCLAIMER?view=auto&rev=471852 ============================================================================== --- incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/DISCLAIMER (added) +++ incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/DISCLAIMER Mon Nov 6 11:54:19 2006 @@ -0,0 +1,5 @@ +Apache CXF is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. + +Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. + +While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. Added: incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/NOTICE URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/NOTICE?view=auto&rev=471852 ============================================================================== --- incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/NOTICE (added) +++ incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/NOTICE Mon Nov 6 11:54:19 2006 @@ -0,0 +1,45 @@ + ========================================================================= + == NOTICE file corresponding to the section 4 d of == + == the Apache License, Version 2.0, == + == in this case for the Apache CXF distribution. == + ========================================================================= + + This product includes software developed by + The Apache Software Foundation (http://www.apache.org/). + + The product includes Web Services Description Language + for Java Toolkit (WSDL4J) software in binary form. + The source may be obtained at: http://sourceforge.net/projects/wsdl4j. + + This product also includes software developed by: + - the W3C consortium (http://www.w3c.org) , + + This product also includes software developed by Spring Framework + Project (http://www.springframework.org) + + This product also includes software developed by SUN MICROSYSTEMS, INC + (https://www.dev.java.net/servlets/ProjectList) + + This product also includes specifications developed by Java Community + Process (http://jcp.org/en/home/index) + + This product also includes software developed by Mort Bay Consulting + Pty (http://jetty.mortbay.org) + + This product also includes software developed by Codehause + (http://woodstox.codehaus.org/) + + This product also includes WS-* schemas developed by International + Business Machines Corporation, Microsoft Corporation, BEA Systems, + TIBCO Software, SAP AG, Sonic Software, and VeriSign + (http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd) + (http://schemas.xmlsoap.org/ws/2004/08/addressing/) + (http://schemas.xmlsoap.org/ws/2005/02/rm/wsrm.xsd) + (http://schemas.xmlsoap.org/ws/2004/09/policy/ws-policy.xsd) + + This Product also includes schemas developed by OASIS + (http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd) + (http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd) + + Additional copyright notices and license terms applicable are + present in the licenses directory of this distribution. Propchange: incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/NOTICE ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/eclipse-plugin/src/main/resources/NOTICE ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: incubator/cxf/trunk/tools/java2wsdl/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/java2wsdl/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/java2wsdl/pom.xml (original) +++ incubator/cxf/trunk/tools/java2wsdl/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF Command Line Tools Java2Wsdl</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/DISCLAIMER URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/DISCLAIMER?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/DISCLAIMER (original) +++ incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/DISCLAIMER Mon Nov 6 11:54:19 2006 @@ -1,4 +1,4 @@ -Apache CeltiXfire is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. +Apache CXF is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. Modified: incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/NOTICE URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/NOTICE?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/NOTICE (original) +++ incubator/cxf/trunk/tools/java2wsdl/src/main/resources/META-INF/NOTICE Mon Nov 6 11:54:19 2006 @@ -1,7 +1,7 @@ ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == - == in this case for the Apache CeltiXfire distribution. == + == in this case for the Apache CXF distribution. == ========================================================================= This product includes software developed by Modified: incubator/cxf/trunk/tools/misctools/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/misctools/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/misctools/pom.xml (original) +++ incubator/cxf/trunk/tools/misctools/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF Command Line Misctools</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/DISCLAIMER URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/DISCLAIMER?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/DISCLAIMER (original) +++ incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/DISCLAIMER Mon Nov 6 11:54:19 2006 @@ -1,4 +1,4 @@ -Apache CeltiXfire is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. +Apache CXF is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. Modified: incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/NOTICE URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/NOTICE?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/NOTICE (original) +++ incubator/cxf/trunk/tools/misctools/src/main/resources/META-INF/NOTICE Mon Nov 6 11:54:19 2006 @@ -1,7 +1,7 @@ ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == - == in this case for the Apache CeltiXfire distribution. == + == in this case for the Apache CXF distribution. == ========================================================================= This product includes software developed by Modified: incubator/cxf/trunk/tools/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/pom.xml (original) +++ incubator/cxf/trunk/tools/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>pom</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF Command Line Tools</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/validator/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/validator/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/validator/pom.xml (original) +++ incubator/cxf/trunk/tools/validator/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF Command Line Tools Validator</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/DISCLAIMER URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/DISCLAIMER?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/DISCLAIMER (original) +++ incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/DISCLAIMER Mon Nov 6 11:54:19 2006 @@ -1,4 +1,4 @@ -Apache CeltiXfire is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. +Apache CXF is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. Modified: incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/NOTICE URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/NOTICE?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/NOTICE (original) +++ incubator/cxf/trunk/tools/validator/src/main/resources/META-INF/NOTICE Mon Nov 6 11:54:19 2006 @@ -1,7 +1,7 @@ ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == - == in this case for the Apache CeltiXfire distribution. == + == in this case for the Apache CXF distribution. == ========================================================================= This product includes software developed by Modified: incubator/cxf/trunk/tools/wsdl2java/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/wsdl2java/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/wsdl2java/pom.xml (original) +++ incubator/cxf/trunk/tools/wsdl2java/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF Command Line Tools Wsdl2java</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/DISCLAIMER URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/DISCLAIMER?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/DISCLAIMER (original) +++ incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/DISCLAIMER Mon Nov 6 11:54:19 2006 @@ -1,4 +1,4 @@ -Apache CeltiXfire is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. +Apache CXF is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. Modified: incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/NOTICE URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/NOTICE?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/NOTICE (original) +++ incubator/cxf/trunk/tools/wsdl2java/src/main/resources/META-INF/NOTICE Mon Nov 6 11:54:19 2006 @@ -1,7 +1,7 @@ ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == - == in this case for the Apache CeltiXfire distribution. == + == in this case for the Apache CXF distribution. == ========================================================================= This product includes software developed by Modified: incubator/cxf/trunk/tools/xjc/cfg-test/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/cfg-test/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/cfg-test/pom.xml (original) +++ incubator/cxf/trunk/tools/xjc/cfg-test/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF XJC Configurable Beans Plugin Tests</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/xjc/cfg/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/cfg/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/cfg/pom.xml (original) +++ incubator/cxf/trunk/tools/xjc/cfg/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF XJC Configurable Beans Plugin</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/DISCLAIMER URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/DISCLAIMER?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/DISCLAIMER (original) +++ incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/DISCLAIMER Mon Nov 6 11:54:19 2006 @@ -1,4 +1,4 @@ -Apache CeltiXfire is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. +Apache CXF is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. Modified: incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/NOTICE URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/NOTICE?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/NOTICE (original) +++ incubator/cxf/trunk/tools/xjc/cfg/src/main/resources/META-INF/NOTICE Mon Nov 6 11:54:19 2006 @@ -1,7 +1,7 @@ ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == - == in this case for the Apache CeltiXfire distribution. == + == in this case for the Apache CXF distribution. == ========================================================================= This product includes software developed by Modified: incubator/cxf/trunk/tools/xjc/dv-test/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/dv-test/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/dv-test/pom.xml (original) +++ incubator/cxf/trunk/tools/xjc/dv-test/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF XJC Default Value Plugin Tests</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/xjc/dv/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/dv/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/dv/pom.xml (original) +++ incubator/cxf/trunk/tools/xjc/dv/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>jar</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF XJC Default Value Plugin</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId> Modified: incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/DISCLAIMER URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/DISCLAIMER?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/DISCLAIMER (original) +++ incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/DISCLAIMER Mon Nov 6 11:54:19 2006 @@ -1,4 +1,4 @@ -Apache CeltiXfire is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. +Apache CXF is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. Modified: incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/NOTICE URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/NOTICE?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/NOTICE (original) +++ incubator/cxf/trunk/tools/xjc/dv/src/main/resources/META-INF/NOTICE Mon Nov 6 11:54:19 2006 @@ -1,7 +1,7 @@ ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == - == in this case for the Apache CeltiXfire distribution. == + == in this case for the Apache CXF distribution. == ========================================================================= This product includes software developed by Modified: incubator/cxf/trunk/tools/xjc/pom.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/xjc/pom.xml?view=diff&rev=471852&r1=471851&r2=471852 ============================================================================== --- incubator/cxf/trunk/tools/xjc/pom.xml (original) +++ incubator/cxf/trunk/tools/xjc/pom.xml Mon Nov 6 11:54:19 2006 @@ -24,7 +24,7 @@ <packaging>pom</packaging> <version>2.0-incubator-M1-SNAPSHOT</version> <name>CXF XJC Plugins</name> - <url>http://cwiki.apache.org/confluence/display/CXF/CeltiXfire+space</url> + <url>http://cwiki.apache.org/confluence/display/CXF/Index</url> <parent> <groupId>org.apache.cxf</groupId>
