Modified: servicemix/smx4/features/trunk/examples/wsdl-first/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/wsdl-first/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff ============================================================================== --- servicemix/smx4/features/trunk/examples/wsdl-first/pom.xml (original) +++ servicemix/smx4/features/trunk/examples/wsdl-first/pom.xml Tue Oct 12 20:50:01 2010 @@ -1,120 +1,70 @@ -<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"> +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> -<!-- + <!-- - 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. ---> - - <modelVersion>4.0.0</modelVersion> - - <parent> - <groupId>org.apache.servicemix.examples</groupId> - <artifactId>examples</artifactId> - <version>4.3.0-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.examples</groupId> - <artifactId>wsdl-first</artifactId> - <name>Apache ServiceMix :: Features :: Examples :: WSDL First</name> - <packaging>pom</packaging> - - <!-- Add ServiceMix repositories for snaphots and releases --> - <pluginRepositories> - <pluginRepository> - <id>apache.snapshots</id> - <name>Apache Snapshots Repository</name> - <url>http://repository.apache.org/content/groups/snapshots-group</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>false</enabled> - </releases> - </pluginRepository> - <pluginRepository> - <id>apache.incubating</id> - <name>Apache Incubating Repository</name> - <url>http://people.apache.org/repo/m2-incubating-repository</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </pluginRepository> - </pluginRepositories> - <repositories> - <repository> - <id>apache.snapshots</id> - <name>Apache Snapshots Repository</name> - <url>http://repository.apache.org/content/groups/snapshots-group</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>false</enabled> - </releases> - </repository> - <repository> - <id>apache.incubating</id> - <name>Apache Incubating Repository</name> - <url>http://people.apache.org/repo/m2-incubating-repository</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - <releases> - <enabled>true</enabled> - </releases> - </repository> - </repositories> - - <modules> - <module>wsdl-first-jsr181-su</module> - <module>wsdl-first-http-su</module> - <module>wsdl-first-sa</module> - </modules> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-assembly-plugin</artifactId> - <version>${maven-assembly-plugin.version}</version> - <inherited>false</inherited> - <executions> - <execution> - <id>src</id> - <phase>package</phase> - <goals> - <goal>single</goal> - </goals> - <configuration> - <descriptors> - <descriptor>src/main/assembly/src.xml</descriptor> - </descriptors> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>jbi-maven-plugin</artifactId> - <version>${jbi-maven-plugin.version}</version> - <extensions>true</extensions> - </plugin> - </plugins> - </build> + 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. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.examples</groupId> + <artifactId>examples</artifactId> + <version>4.3.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.examples</groupId> + <artifactId>wsdl-first</artifactId> + <name>Apache ServiceMix :: Features :: Examples :: WSDL First</name> + <packaging>pom</packaging> + + <modules> + <module>wsdl-first-jsr181-su</module> + <module>wsdl-first-http-su</module> + <module>wsdl-first-sa</module> + </modules> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <inherited>false</inherited> + <executions> + <execution> + <id>src</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <descriptors> + <descriptor>src/main/assembly/src.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>jbi-maven-plugin</artifactId> + <extensions>true</extensions> + </plugin> + </plugins> + </build> + </project>
Modified: servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff ============================================================================== --- servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml (original) +++ servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-http-su/pom.xml Tue Oct 12 20:50:01 2010 @@ -1,52 +1,52 @@ -<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"> +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> -<!-- + <!-- - 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. ---> - - <modelVersion>4.0.0</modelVersion> - - <parent> - <groupId>org.apache.servicemix.examples</groupId> - <artifactId>wsdl-first</artifactId> - <version>4.3.0-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.examples.wsdl-first</groupId> - <artifactId>wsdl-first-http-su</artifactId> - <packaging>jbi-service-unit</packaging> - <name>Apache ServiceMix :: Features :: Examples :: WSDL First :: HTTP SU</name> - - <dependencies> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-http</artifactId> - <version>${servicemix-http.version}</version> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>jbi-maven-plugin</artifactId> - <version>${jbi-maven-plugin.version}</version> - <extensions>true</extensions> - </plugin> - </plugins> - </build> + 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. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.examples</groupId> + <artifactId>wsdl-first</artifactId> + <version>4.3.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.examples.wsdl-first</groupId> + <artifactId>wsdl-first-http-su</artifactId> + <packaging>jbi-service-unit</packaging> + <name>Apache ServiceMix :: Features :: Examples :: WSDL First :: HTTP SU</name> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-http</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>jbi-maven-plugin</artifactId> + <extensions>true</extensions> + </plugin> + </plugins> + </build> + </project> Modified: servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff ============================================================================== --- servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml (original) +++ servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-jsr181-su/pom.xml Tue Oct 12 20:50:01 2010 @@ -1,79 +1,78 @@ -<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"> +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> -<!-- + <!-- - 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. ---> - - <modelVersion>4.0.0</modelVersion> - - <parent> - <groupId>org.apache.servicemix.examples</groupId> - <artifactId>wsdl-first</artifactId> - <version>4.3.0-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.examples.wsdl-first</groupId> - <artifactId>wsdl-first-jsr181-su</artifactId> - <packaging>jbi-service-unit</packaging> - <name>Apache ServiceMix :: Features :: Examples :: WSDL First :: JSR181 SU</name> - - <dependencies> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-jsr181</artifactId> - <version>${servicemix-jsr181.version}</version> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.5</source> - <target>1.5</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>xfire-maven-plugin</artifactId> - <version>${xfire-maven-plugin.version}</version> - <executions> - <execution> - <phase>generate-sources</phase> - <configuration> - <wsdls> - <wsdl>${basedir}/src/main/resources/person.wsdl</wsdl> - </wsdls> - <profile>org.codehaus.xfire.gen.jsr181.Jsr181Profile</profile> - <outputDirectory>${basedir}/target/jaxws</outputDirectory> - </configuration> - <goals> - <goal>wsgen</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>jbi-maven-plugin</artifactId> - <version>${jbi-maven-plugin.version}</version> - <extensions>true</extensions> - </plugin> - </plugins> - </build> + 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. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.examples</groupId> + <artifactId>wsdl-first</artifactId> + <version>4.3.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.examples.wsdl-first</groupId> + <artifactId>wsdl-first-jsr181-su</artifactId> + <packaging>jbi-service-unit</packaging> + <name>Apache ServiceMix :: Features :: Examples :: WSDL First :: JSR181 SU</name> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-jsr181</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>xfire-maven-plugin</artifactId> + <executions> + <execution> + <phase>generate-sources</phase> + <configuration> + <wsdls> + <wsdl>${basedir}/src/main/resources/person.wsdl</wsdl> + </wsdls> + <profile>org.codehaus.xfire.gen.jsr181.Jsr181Profile</profile> + <outputDirectory>${basedir}/target/jaxws</outputDirectory> + </configuration> + <goals> + <goal>wsgen</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>jbi-maven-plugin</artifactId> + <extensions>true</extensions> + </plugin> + </plugins> + </build> + </project> Modified: servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-sa/pom.xml URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-sa/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff ============================================================================== --- servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-sa/pom.xml (original) +++ servicemix/smx4/features/trunk/examples/wsdl-first/wsdl-first-sa/pom.xml Tue Oct 12 20:50:01 2010 @@ -1,58 +1,58 @@ -<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"> +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> -<!-- + <!-- - 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. ---> - - <modelVersion>4.0.0</modelVersion> - - <parent> - <groupId>org.apache.servicemix.examples</groupId> - <artifactId>wsdl-first</artifactId> - <version>4.3.0-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.examples.wsdl-first</groupId> - <artifactId>wsdl-first-sa</artifactId> - <packaging>jbi-service-assembly</packaging> - <name>Apache ServiceMix :: Features :: Examples :: WSDL First :: SA</name> - - <dependencies> - <dependency> - <groupId>org.apache.servicemix.examples.wsdl-first</groupId> - <artifactId>wsdl-first-jsr181-su</artifactId> - <version>${project.version}</version> - </dependency> - <dependency> - <groupId>org.apache.servicemix.examples.wsdl-first</groupId> - <artifactId>wsdl-first-http-su</artifactId> - <version>${project.version}</version> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>jbi-maven-plugin</artifactId> - <version>${jbi-maven-plugin.version}</version> - <extensions>true</extensions> - </plugin> - </plugins> - </build> + 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. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.examples</groupId> + <artifactId>wsdl-first</artifactId> + <version>4.3.0-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.examples.wsdl-first</groupId> + <artifactId>wsdl-first-sa</artifactId> + <packaging>jbi-service-assembly</packaging> + <name>Apache ServiceMix :: Features :: Examples :: WSDL First :: SA</name> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix.examples.wsdl-first</groupId> + <artifactId>wsdl-first-jsr181-su</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.servicemix.examples.wsdl-first</groupId> + <artifactId>wsdl-first-http-su</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>jbi-maven-plugin</artifactId> + <extensions>true</extensions> + </plugin> + </plugins> + </build> </project>
