summaryrefslogtreecommitdiffstats
path: root/maven-plugins/trunk/maven-zip-plugin/src/main/resources/META-INF/plexus
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-04-05 06:48:25 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-04-05 06:48:25 +0000
commit11f0de486598b390274ef2d845cde2271f2b68d7 (patch)
tree71817327ae90321f28e2d4a4c81dd5ba188207ef /maven-plugins/trunk/maven-zip-plugin/src/main/resources/META-INF/plexus
parent6ea29047da867592e0659e9149bd3d1a313bef03 (diff)
Start of a maven plugin to create SCA ZIP contributions
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@762046 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven-plugins/trunk/maven-zip-plugin/src/main/resources/META-INF/plexus')
-rw-r--r--maven-plugins/trunk/maven-zip-plugin/src/main/resources/META-INF/plexus/components.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/maven-plugins/trunk/maven-zip-plugin/src/main/resources/META-INF/plexus/components.xml b/maven-plugins/trunk/maven-zip-plugin/src/main/resources/META-INF/plexus/components.xml
new file mode 100644
index 0000000000..b842e6576b
--- /dev/null
+++ b/maven-plugins/trunk/maven-zip-plugin/src/main/resources/META-INF/plexus/components.xml
@@ -0,0 +1,41 @@
+<?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.
+-->
+<component-set>
+ <components>
+ <component>
+ <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
+ <role-hint>zip</role-hint>
+ <implementation>
+ org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping
+ </implementation>
+ <configuration>
+ <phases>
+ <process-resources>
+ org.apache.maven.plugins:maven-resources-plugin:resources
+ </process-resources>
+ <compile>
+ org.apache.maven.plugins:maven-compiler-plugin:compile
+ </compile>
+ <package>org.apache.tuscany.maven.plugins:maven-zip-plugin:zip</package>
+ </phases>
+ </configuration>
+ </component>
+ </components>
+</component-set>