Clement Escoffier | 0ee3074 | 2008-10-14 11:01:46 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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 | bfa74d0 | 2009-07-19 16:25:18 +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 | bfa74d0 | 2009-07-19 16:25:18 +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. |
Clement Escoffier | 0ee3074 | 2008-10-14 11:01:46 +0000 | [diff] [blame] | 18 | --> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <parent> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 23 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 25 | <relativePath>../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <name>Apache Felix iPOJO Arch Command</name> |
| 30 | <artifactId>org.apache.felix.ipojo.arch</artifactId> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 31 | <version>1.7.0-SNAPSHOT</version> |
| 32 | |
| 33 | <description>Arch command to collect and print information about iPOJO instances.</description> |
Clement Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 34 | <url> |
| 35 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html |
| 36 | </url> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 42 | <version>1.9.0-SNAPSHOT</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.shell</artifactId> |
| 47 | <version>1.0.2</version> |
| 48 | </dependency> |
| 49 | </dependencies> |
| 50 | <build> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <groupId>org.apache.felix</groupId> |
| 54 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 55 | <version>2.3.7</version> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 56 | <extensions>true</extensions> |
| 57 | <configuration> |
| 58 | <instructions> |
| 59 | <Bundle-Name>Apache Felix iPOJO Arch Command</Bundle-Name> |
| 60 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 61 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 62 | <Bundle-Description>iPOJO Arch command for Felix |
| 63 | </Bundle-Description> |
| 64 | <Bundle-DocURL> |
Clement Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 65 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 66 | </Bundle-DocURL> |
| 67 | <Private-Package>org.apache.felix.ipojo.arch</Private-Package> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 68 | </instructions> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>maven-ipojo-plugin</artifactId> |
| 74 | <version>1.8.0</version> |
| 75 | <executions> |
| 76 | <execution> |
| 77 | <goals> |
| 78 | <goal>ipojo-bundle</goal> |
| 79 | </goals> |
| 80 | <configuration> |
| 81 | <ignoreAnnotations>true</ignoreAnnotations> |
| 82 | <metadata> |
| 83 | <![CDATA[ |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 84 | <ipojo> |
| 85 | <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false"> |
| 86 | <Provides /> |
Clement Escoffier | e240bf2 | 2010-04-16 14:52:49 +0000 | [diff] [blame] | 87 | <requires field="m_archs" optional="true" proxy="false" /> |
| 88 | <requires field="m_factories" optional="true" proxy="false" /> |
| 89 | <requires field="m_handlers" optional="true" proxy="false" /> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 90 | </component> |
| 91 | <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" /> |
| 92 | </ipojo> |
| 93 | ]]> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 94 | </metadata> |
| 95 | </configuration> |
| 96 | </execution> |
| 97 | </executions> |
| 98 | </plugin> |
| 99 | <plugin> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 100 | <groupId>org.apache.maven.plugins</groupId> |
| 101 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 102 | <configuration> |
| 103 | <enableRulesSummary>false</enableRulesSummary> |
| 104 | <violationSeverity>warning</violationSeverity> |
| 105 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 106 | </configuration> |
| 107 | </plugin> |
| 108 | <plugin> |
| 109 | <groupId>org.apache.maven.plugins</groupId> |
| 110 | <artifactId>maven-compiler-plugin</artifactId> |
| 111 | <configuration> |
| 112 | <target>1.5</target> |
| 113 | <source>1.5</source> |
| 114 | </configuration> |
| 115 | </plugin> |
| 116 | </plugins> |
| 117 | </build> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 118 | </project> |