Clement Escoffier | 0ee3074 | 2008-10-14 11:01:46 +0000 | [diff] [blame] | 1 | <!-- |
| 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 |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame^] | 9 | |
Clement Escoffier | 0ee3074 | 2008-10-14 11:01:46 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame^] | 11 | |
Clement Escoffier | 0ee3074 | 2008-10-14 11:01:46 +0000 | [diff] [blame] | 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 | --> |
Clement Escoffier | a7b8786 | 2009-01-19 14:33:55 +0000 | [diff] [blame] | 19 | <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"> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 20 | <parent> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | e259159 | 2009-04-30 14:00:40 +0000 | [diff] [blame] | 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix iPOJO Arch Command</name> |
| 29 | <artifactId>org.apache.felix.ipojo.arch</artifactId> |
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 30 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 6ab0011 | 2009-01-19 14:34:21 +0000 | [diff] [blame] | 31 | <version>1.3.0-SNAPSHOT</version> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
Clement Escoffier | 4a12e33 | 2008-04-07 13:29:34 +0000 | [diff] [blame] | 34 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 35 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame^] | 36 | <version>${pom.version}</version> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 37 | </dependency> |
| 38 | <dependency> |
Clement Escoffier | 4a12e33 | 2008-04-07 13:29:34 +0000 | [diff] [blame] | 39 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 40 | <artifactId>org.apache.felix.shell</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 41 | <version>1.0.2</version> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 42 | </dependency> |
| 43 | </dependencies> |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 49 | <version>1.4.3</version> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 50 | <extensions>true</extensions> |
| 51 | <configuration> |
| 52 | <instructions> |
Clement Escoffier | 8d88835 | 2008-12-10 12:29:41 +0000 | [diff] [blame] | 53 | <Bundle-Name>Apache Felix iPOJO Arch Command</Bundle-Name> |
| 54 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 55 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame^] | 56 | <Bundle-Description> iPOJO Arch command for Felix |
Clement Escoffier | 2ae452a | 2008-08-13 14:14:55 +0000 | [diff] [blame] | 57 | </Bundle-Description> |
| 58 | <Bundle-DocURL> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame^] | 59 | http://felix.apache.org/site/architecture-handler.html |
Clement Escoffier | 2ae452a | 2008-08-13 14:14:55 +0000 | [diff] [blame] | 60 | </Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 61 | <Private-Package> org.apache.felix.ipojo.arch </Private-Package> |
| 62 | <Include-Resource> META-INF/LICENCE=LICENSE, |
| 63 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 64 | </instructions> |
| 65 | </configuration> |
| 66 | </plugin> |
Clement Escoffier | d912854 | 2008-12-23 13:21:58 +0000 | [diff] [blame] | 67 | <plugin> |
| 68 | <groupId>org.apache.felix</groupId> |
| 69 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame^] | 70 | <version>${pom.version}</version> |
Clement Escoffier | d912854 | 2008-12-23 13:21:58 +0000 | [diff] [blame] | 71 | <executions> |
| 72 | <execution> |
| 73 | <goals> |
| 74 | <goal>ipojo-bundle</goal> |
| 75 | </goals> |
| 76 | <configuration> |
| 77 | <ignoreAnnotations>true</ignoreAnnotations> |
| 78 | <metadata> |
| 79 | <![CDATA[ |
| 80 | <ipojo> |
Clement Escoffier | a7b8786 | 2009-01-19 14:33:55 +0000 | [diff] [blame] | 81 | <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false"> |
Clement Escoffier | d912854 | 2008-12-23 13:21:58 +0000 | [diff] [blame] | 82 | <Provides /> |
| 83 | <requires field="m_archs" optional="true" /> |
| 84 | <requires field="m_factories" optional="true" /> |
| 85 | <requires field="m_handlers" optional="true" /> |
| 86 | </component> |
Clement Escoffier | a7b8786 | 2009-01-19 14:33:55 +0000 | [diff] [blame] | 87 | <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" /> |
Clement Escoffier | d912854 | 2008-12-23 13:21:58 +0000 | [diff] [blame] | 88 | </ipojo> |
| 89 | ]]> |
| 90 | </metadata> |
| 91 | </configuration> |
| 92 | </execution> |
| 93 | </executions> |
| 94 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 95 | <plugin> |
| 96 | <groupId>org.codehaus.mojo</groupId> |
| 97 | <artifactId>rat-maven-plugin</artifactId> |
| 98 | <configuration> |
| 99 | <excludeSubProjects>false</excludeSubProjects> |
| 100 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 101 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 102 | <excludes> |
| 103 | <param>doc/**/*</param> |
| 104 | <param>maven-eclipse.xml</param> |
| 105 | <param>.checkstyle</param> |
| 106 | <param>.externalToolBuilders/*</param> |
| 107 | <param>LICENSE.asm</param> |
| 108 | </excludes> |
| 109 | </configuration> |
| 110 | </plugin> |
| 111 | <plugin> |
| 112 | <groupId>org.apache.maven.plugins</groupId> |
| 113 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 114 | <configuration> |
| 115 | <enableRulesSummary>false</enableRulesSummary> |
| 116 | <violationSeverity>warning</violationSeverity> |
| 117 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 118 | </configuration> |
| 119 | </plugin> |
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 120 | </plugins> |
| 121 | </build> |
Clement Escoffier | 5bb754f | 2008-10-14 10:59:57 +0000 | [diff] [blame] | 122 | </project> |