Modified: servicemix/archetypes/trunk/servicemix-service-unit/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-service-unit/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-service-unit/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,33 +1,33 @@ <?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/maven-v4_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</groupId> - <artifactId>archetypes</artifactId> - <version>2010.01-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>servicemix-service-unit</artifactId> - <name>ServiceMix :: Archetypes :: ServiceUnit</name> + 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</groupId> + <artifactId>archetypes</artifactId> + <version>2010.01-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>servicemix-service-unit</artifactId> + <name>ServiceMix :: Archetypes :: ServiceUnit</name> </project>
Modified: servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,50 +1,50 @@ <?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/maven-v4_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> - - <groupId>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A custom service unit</name> - <url>http://www.myorganization.org</url> - - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>@{junit.version}</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <defaultGoal>true</defaultGoal> - <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> + + <groupId>${groupId}</groupId> + <artifactId>${artifactId}</artifactId> + <packaging>jbi-service-unit</packaging> + <version>${version}</version> + <name>A custom service unit</name> + <url>http://www.myorganization.org</url> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>@{junit.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <defaultGoal>true</defaultGoal> + <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> </project> Modified: servicemix/archetypes/trunk/servicemix-shared-library/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-shared-library/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-shared-library/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-shared-library/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,33 +1,33 @@ <?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/maven-v4_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</groupId> - <artifactId>archetypes</artifactId> - <version>2010.01-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>servicemix-shared-library</artifactId> - <name>ServiceMix :: Archetypes :: SharedLibrary</name> + 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</groupId> + <artifactId>archetypes</artifactId> + <version>2010.01-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>servicemix-shared-library</artifactId> + <name>ServiceMix :: Archetypes :: SharedLibrary</name> </project> Modified: servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,51 +1,51 @@ <?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/maven-v4_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> - - <groupId>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-shared-library</packaging> - <version>${version}</version> - <name>A custom shared library</name> - <url>http://www.myorganization.org</url> - - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>@{junit.version}</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <defaultGoal>install</defaultGoal> - <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> + + <groupId>${groupId}</groupId> + <artifactId>${artifactId}</artifactId> + <packaging>jbi-shared-library</packaging> + <version>${version}</version> + <name>A custom shared library</name> + <url>http://www.myorganization.org</url> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>@{junit.version}</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + <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> </project> Modified: servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,33 +1,33 @@ <?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/maven-v4_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</groupId> - <artifactId>archetypes</artifactId> - <version>2010.01-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>servicemix-smpp-consumer-service-unit</artifactId> - <name>ServiceMix :: Archetypes :: SMPPConsumerServiceUnit</name> + 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</groupId> + <artifactId>archetypes</artifactId> + <version>2010.01-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>servicemix-smpp-consumer-service-unit</artifactId> + <name>ServiceMix :: Archetypes :: SMPPConsumerServiceUnit</name> -</project> \ No newline at end of file +</project> Modified: servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/src/main/resources/archetype-resources/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/src/main/resources/archetype-resources/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/src/main/resources/archetype-resources/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,50 +1,50 @@ <?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/maven-v4_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> - - <groupId>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A custom SMPP service unit</name> - <url>http://www.myorganization.org</url> - - <dependencies> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-smpp</artifactId> - <version>@{components.version}</version> - </dependency> - </dependencies> - - <build> - <defaultGoal>install</defaultGoal> - <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> + + <groupId>${groupId}</groupId> + <artifactId>${artifactId}</artifactId> + <packaging>jbi-service-unit</packaging> + <version>${version}</version> + <name>A custom SMPP service unit</name> + <url>http://www.myorganization.org</url> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-smpp</artifactId> + <version>@{components.version}</version> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + <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> -</project> \ No newline at end of file +</project> Modified: servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,33 +1,33 @@ <?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/maven-v4_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</groupId> - <artifactId>archetypes</artifactId> - <version>2010.01-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>servicemix-smpp-provider-service-unit</artifactId> - <name>ServiceMix :: Archetypes :: SMPPProviderServiceUnit</name> + 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</groupId> + <artifactId>archetypes</artifactId> + <version>2010.01-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>servicemix-smpp-provider-service-unit</artifactId> + <name>ServiceMix :: Archetypes :: SMPPProviderServiceUnit</name> -</project> \ No newline at end of file +</project> Modified: servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/src/main/resources/archetype-resources/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/src/main/resources/archetype-resources/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/src/main/resources/archetype-resources/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,50 +1,50 @@ <?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/maven-v4_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> - - <groupId>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A custom SMPP service unit</name> - <url>http://www.myorganization.org</url> - - <dependencies> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-smpp</artifactId> - <version>@{components.version}</version> - </dependency> - </dependencies> - - <build> - <defaultGoal>install</defaultGoal> - <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> + + <groupId>${groupId}</groupId> + <artifactId>${artifactId}</artifactId> + <packaging>jbi-service-unit</packaging> + <version>${version}</version> + <name>A custom SMPP service unit</name> + <url>http://www.myorganization.org</url> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-smpp</artifactId> + <version>@{components.version}</version> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + <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> -</project> \ No newline at end of file +</project> Modified: servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,33 +1,33 @@ <?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/maven-v4_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</groupId> - <artifactId>archetypes</artifactId> - <version>2010.01-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>servicemix-snmp-service-unit</artifactId> - <name>ServiceMix :: Archetypes :: SnmpServiceUnit</name> + 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</groupId> + <artifactId>archetypes</artifactId> + <version>2010.01-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>servicemix-snmp-service-unit</artifactId> + <name>ServiceMix :: Archetypes :: SnmpServiceUnit</name> </project> Modified: servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,49 +1,49 @@ <?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/maven-v4_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> - - <groupId>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A custom SNMP poll service unit</name> - <url>http://www.myorganization.org</url> - - <dependencies> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-snmp</artifactId> - <version>@{components.version}</version> - </dependency> - </dependencies> - - <build> - <defaultGoal>install</defaultGoal> - <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> + + <groupId>${groupId}</groupId> + <artifactId>${artifactId}</artifactId> + <packaging>jbi-service-unit</packaging> + <version>${version}</version> + <name>A custom SNMP poll service unit</name> + <url>http://www.myorganization.org</url> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-snmp</artifactId> + <version>@{components.version}</version> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + <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> </project> Modified: servicemix/archetypes/trunk/servicemix-validation-service-unit/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-validation-service-unit/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-validation-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-validation-service-unit/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,33 +1,33 @@ <?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/maven-v4_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</groupId> - <artifactId>archetypes</artifactId> - <version>2010.01-SNAPSHOT</version> - </parent> - - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>servicemix-validation-service-unit</artifactId> - <name>ServiceMix :: Archetypes :: ValidationServiceUnit</name> + 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</groupId> + <artifactId>archetypes</artifactId> + <version>2010.01-SNAPSHOT</version> + </parent> + + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>servicemix-validation-service-unit</artifactId> + <name>ServiceMix :: Archetypes :: ValidationServiceUnit</name> </project> Modified: servicemix/archetypes/trunk/servicemix-validation-service-unit/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-validation-service-unit/src/main/resources/archetype-resources/pom.xml?rev=928731&r1=928730&r2=928731&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-validation-service-unit/src/main/resources/archetype-resources/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-validation-service-unit/src/main/resources/archetype-resources/pom.xml Mon Mar 29 11:50:54 2010 @@ -1,52 +1,52 @@ <?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/maven-v4_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> - - <groupId>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A custom validation service unit</name> - <url>http://www.myorganization.org</url> - - <dependencies> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-validation</artifactId> - <version>@{components.version}</version> - </dependency> - </dependencies> - - <build> - <defaultGoal>install</defaultGoal> - <plugins> - <plugin> - <groupId>org.apache.servicemix.tooling</groupId> - <artifactId>jbi-maven-plugin</artifactId> - <version>@{jbi-maven-plugin.version}</version> - <extensions>true</extensions> - <configuration> - <type>service-unit</type> - </configuration> - </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> + + <groupId>${groupId}</groupId> + <artifactId>${artifactId}</artifactId> + <packaging>jbi-service-unit</packaging> + <version>${version}</version> + <name>A custom validation service unit</name> + <url>http://www.myorganization.org</url> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-validation</artifactId> + <version>@{components.version}</version> + </dependency> + </dependencies> + + <build> + <defaultGoal>install</defaultGoal> + <plugins> + <plugin> + <groupId>org.apache.servicemix.tooling</groupId> + <artifactId>jbi-maven-plugin</artifactId> + <version>@{jbi-maven-plugin.version}</version> + <extensions>true</extensions> + <configuration> + <type>service-unit</type> + </configuration> + </plugin> + </plugins> + </build> </project>
