blob: 1e3e83c6db2154887fffbabb47b35ff78f9709ef [file] [log] [blame]
Karl Paulsd140dd92006-11-02 22:22:49 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Richard S. Hallf3120092006-10-31 17:32:16 +000019<component-set>
20 <components>
21 <component>
22 <role>org.apache.maven.lifecycle.mapping.LifecycleMapping</role>
23 <role-hint>bundle</role-hint>
24 <implementation>org.apache.maven.lifecycle.mapping.DefaultLifecycleMapping</implementation>
25 <configuration>
26 <lifecycles>
27 <lifecycle>
28 <id>default</id>
29 <!-- START SNIPPET: bundle-lifecycle -->
30 <phases>
31 <process-resources>org.apache.maven.plugins:maven-resources-plugin:resources</process-resources>
32 <compile>org.apache.maven.plugins:maven-compiler-plugin:compile</compile>
33 <process-test-resources>org.apache.maven.plugins:maven-resources-plugin:testResources</process-test-resources>
34 <test-compile>org.apache.maven.plugins:maven-compiler-plugin:testCompile</test-compile>
35 <test>org.apache.maven.plugins:maven-surefire-plugin:test</test>
Richard S. Hall797bc982007-05-21 18:35:07 +000036 <package>org.apache.felix:maven-bundle-plugin:bundle</package>
Stefano Lenzi476013d2007-09-21 23:59:54 +000037 <install>
Stuart McCulloch61223202007-09-26 17:41:03 +000038 org.apache.maven.plugins:maven-install-plugin:install,
39 org.apache.felix:maven-bundle-plugin:install
Stuart McCulloch03d950f2007-09-25 08:37:42 +000040 </install>
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +000041 <deploy>
Stuart McCulloch5d6cb732008-02-18 05:24:46 +000042 org.apache.maven.plugins:maven-deploy-plugin:deploy,
43 org.apache.felix:maven-bundle-plugin:deploy
Stuart McCullochbb8b9fa2008-02-17 16:07:14 +000044 </deploy>
Richard S. Hallf3120092006-10-31 17:32:16 +000045 </phases>
Richard S. Hallf3120092006-10-31 17:32:16 +000046 <!-- END SNIPPET: bundle-lifecycle -->
47 </lifecycle>
48 </lifecycles>
49 </configuration>
50 </component>
51 <component>
52 <role>org.apache.maven.artifact.handler.ArtifactHandler</role>
53 <role-hint>bundle</role-hint>
54 <implementation>org.apache.maven.artifact.handler.DefaultArtifactHandler</implementation>
55 <configuration>
56 <type>bundle</type>
Stuart McCullochffe105b2009-09-23 12:45:14 +000057 <includesDependencies>false</includesDependencies>
Richard S. Hallf3120092006-10-31 17:32:16 +000058 <language>java</language>
59 <extension>jar</extension>
60 <addedToClasspath>true</addedToClasspath>
Stuart McCullochcdbbe2d2011-06-24 13:27:08 +000061 <packaging>bundle</packaging>
Richard S. Hallf3120092006-10-31 17:32:16 +000062 </configuration>
63 </component>
64 </components>
65</component-set>