Modified: servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml?rev=928479&r1=928478&r2=928479&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml Sun Mar 28 19:14:54 2010 @@ -1,81 +1,102 @@ <?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. - ---> -<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>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-component</packaging> - <version>${version}</version> - <name>A custom project</name> - <url>http://www.myorganization.org</url> - - @{repositories} - - <dependencies> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-shared</artifactId> - <version>@{components-version}</version> - </dependency> - <dependency> - <groupId>org.apache.servicemix</groupId> - <artifactId>servicemix-core</artifactId> - <version>@{servicemix-version}</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </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> - <configuration> - <type>service-engine</type> - <component>${packageName}.MyComponent</component> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.xbean</groupId> - <artifactId>maven-xbean-plugin</artifactId> - <version>@{xbean-version}</version> - <executions> - <execution> - <configuration> - <namespace>http://${packageName}/1.0</namespace> - </configuration> - <goals> - <goal>mapping</goal> - </goals> - </execution> - </executions> - </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-component</packaging> + <version>${version}</version> + <name>A custom service engine component</name> + <url>http://www.myorganization.org</url> + + <dependencies> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-shared</artifactId> + <version>@{components.version}</version> + </dependency> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-common</artifactId> + <version>@{components.version}</version> + </dependency> + <dependency> + <groupId>org.apache.servicemix.specs</groupId> + <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId> + <version>@{servicemix-specs.version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jta-_1.1_spec</artifactId> + <version>@{geronimo-specs.version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.servicemix</groupId> + <artifactId>servicemix-core</artifactId> + <version>@{servicemix.version}</version> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-jmx</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>@{junit.version}</version> + <scope>test</scope> + </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> + <configuration> + <type>service-engine</type> + <component>${packageName}.MyComponent</component> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.xbean</groupId> + <artifactId>maven-xbean-plugin</artifactId> + <version>@{xbean.version}</version> + <executions> + <execution> + <configuration> + <namespace>http://${packageName}/1.0</namespace> + </configuration> + <goals> + <goal>mapping</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project>
Modified: servicemix/archetypes/trunk/servicemix-service-unit/pom.xml URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-service-unit/pom.xml?rev=928479&r1=928478&r2=928479&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-service-unit/pom.xml Sun Mar 28 19:14:54 2010 @@ -1,34 +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>2009.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=928479&r1=928478&r2=928479&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 Sun Mar 28 19:14:54 2010 @@ -1,59 +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. - ---> -<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>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A custom project</name> - <url>http://www.myorganization.org</url> - - @{repositories} - - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - <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=928479&r1=928478&r2=928479&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-shared-library/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-shared-library/pom.xml Sun Mar 28 19:14:54 2010 @@ -1,34 +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>2009.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=928479&r1=928478&r2=928479&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 Sun Mar 28 19:14:54 2010 @@ -1,60 +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. - ---> -<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>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-shared-library</packaging> - <version>${version}</version> - <name>A custom project</name> - <url>http://www.myorganization.org</url> - - @{repositories} - - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - <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=928479&r1=928478&r2=928479&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-smpp-consumer-service-unit/pom.xml Sun Mar 28 19:14:54 2010 @@ -1,35 +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. ---> -<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> - - <parent> - <groupId>org.apache.servicemix</groupId> - <artifactId>archetypes</artifactId> - <version>2009.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 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=928479&r1=928478&r2=928479&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 Sun Mar 28 19:14:54 2010 @@ -1,61 +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. - ---> -<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>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A SMPP service unit</name> - <url>http://www.myorganization.org</url> - - @{repositories} - - <properties> - <componentName>servicemix-smpp</componentName> - </properties> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - <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> \ No newline at end of file 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=928479&r1=928478&r2=928479&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-smpp-provider-service-unit/pom.xml Sun Mar 28 19:14:54 2010 @@ -1,35 +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. ---> -<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> - - <parent> - <groupId>org.apache.servicemix</groupId> - <artifactId>archetypes</artifactId> - <version>2009.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 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=928479&r1=928478&r2=928479&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 Sun Mar 28 19:14:54 2010 @@ -1,61 +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. - ---> -<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>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A SMPP service unit</name> - <url>http://www.myorganization.org</url> - - @{repositories} - - <properties> - <componentName>servicemix-smpp</componentName> - </properties> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - <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> \ No newline at end of file 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=928479&r1=928478&r2=928479&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml Sun Mar 28 19:14:54 2010 @@ -1,33 +1,33 @@ <?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. ---> - <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> - <parent> - <groupId>org.apache.servicemix</groupId> - <artifactId>archetypes</artifactId> - <version>2009.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=928479&r1=928478&r2=928479&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 Sun Mar 28 19:14:54 2010 @@ -1,57 +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. - ---> -<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>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A snmp poll service unit</name> - <url>http://www.myorganization.org</url> - - @{repositories} - - <properties> - <componentName>servicemix-snmp</componentName> - </properties> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - <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 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=928479&r1=928478&r2=928479&view=diff ============================================================================== --- servicemix/archetypes/trunk/servicemix-validation-service-unit/pom.xml (original) +++ servicemix/archetypes/trunk/servicemix-validation-service-unit/pom.xml Sun Mar 28 19:14:54 2010 @@ -1,33 +1,33 @@ <?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. ---> - <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> - <parent> - <groupId>org.apache.servicemix</groupId> - <artifactId>archetypes</artifactId> - <version>2009.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=928479&r1=928478&r2=928479&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 Sun Mar 28 19:14:54 2010 @@ -1,57 +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. - ---> -<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>${groupId}</groupId> - <artifactId>${artifactId}</artifactId> - <packaging>jbi-service-unit</packaging> - <version>${version}</version> - <name>A validation service unit</name> - <url>http://www.myorganization.org</url> - - @{repositories} - - <properties> - <componentName>servicemix-validation</componentName> - </properties> - - <build> - <resources> - <resource> - <directory>src/main/resources</directory> - <includes> - <include>**/*</include> - </includes> - </resource> - </resources> - <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>
