Author: gertv
Date: Tue Mar 4 13:02:01 2008
New Revision: 633640
URL: http://svn.apache.org/viewvc?rev=633640&view=rev
Log:
SM-1224: Adding a Maven archetype catalog
Added:
servicemix/smx3/trunk/archetypes/servicemix-archetype-catalog/ (with
props)
servicemix/smx3/trunk/archetypes/servicemix-archetype-catalog/pom.xml
Propchange: servicemix/smx3/trunk/archetypes/servicemix-archetype-catalog/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Mar 4 13:02:01 2008
@@ -0,0 +1 @@
+target
Added: servicemix/smx3/trunk/archetypes/servicemix-archetype-catalog/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/smx3/trunk/archetypes/servicemix-archetype-catalog/pom.xml?rev=633640&view=auto
==============================================================================
--- servicemix/smx3/trunk/archetypes/servicemix-archetype-catalog/pom.xml
(added)
+++ servicemix/smx3/trunk/archetypes/servicemix-archetype-catalog/pom.xml Tue
Mar 4 13:02:01 2008
@@ -0,0 +1,78 @@
+<?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>3.3-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.apache.servicemix.tooling</groupId>
+ <artifactId>catalog</artifactId>
+ <packaging>pom</packaging>
+ <name>ServiceMix :: Archetypes :: Catalog</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <mkdir dir="${project.build.directory}"/>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-archetype-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>crawl</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+
<repository>${settings.localRepository}/org/apache/servicemix/tooling</repository>
+
<catalogFile>${project.build.directory}/archetype-catalog.xml</catalogFile>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <groupId>org.apache.servicemix</groupId>
+ <artifactId>servicemix-archetypes-itests</artifactId>
+ <version>3.3-SNAPSHOT</version>
+ </dependencies>
+
+</project>