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> |
| 24 | <version>1.2.1</version> |
| 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 | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 31 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 32 | <version>1.7.0-SNAPSHOT</version> |
| 33 | |
| 34 | <description>Arch command to collect and print information about iPOJO instances.</description> |
| 35 | <url>http://felix.apache.org/site/ipojo-arch-command.html</url> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.felix</groupId> |
| 45 | <artifactId>org.apache.felix.shell</artifactId> |
| 46 | <version>1.0.2</version> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.felix</groupId> |
| 53 | <artifactId>maven-bundle-plugin</artifactId> |
| 54 | <version>1.4.3</version> |
| 55 | <extensions>true</extensions> |
| 56 | <configuration> |
| 57 | <instructions> |
| 58 | <Bundle-Name>Apache Felix iPOJO Arch Command</Bundle-Name> |
| 59 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 60 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 61 | <Bundle-Description>iPOJO Arch command for Felix |
| 62 | </Bundle-Description> |
| 63 | <Bundle-DocURL> |
| 64 | http://felix.apache.org/site/ipojo-arch-command.html |
| 65 | </Bundle-DocURL> |
| 66 | <Private-Package>org.apache.felix.ipojo.arch</Private-Package> |
| 67 | <Include-Resource> |
| 68 | META-INF/LICENSE=LICENSE, |
| 69 | META-INF/NOTICE=NOTICE, |
| 70 | META-INF/DEPENDENCIES=DEPENDENCIES |
| 71 | </Include-Resource> |
| 72 | </instructions> |
| 73 | </configuration> |
| 74 | </plugin> |
| 75 | <plugin> |
| 76 | <groupId>org.apache.felix</groupId> |
| 77 | <artifactId>maven-ipojo-plugin</artifactId> |
| 78 | <version>1.8.0</version> |
| 79 | <executions> |
| 80 | <execution> |
| 81 | <goals> |
| 82 | <goal>ipojo-bundle</goal> |
| 83 | </goals> |
| 84 | <configuration> |
| 85 | <ignoreAnnotations>true</ignoreAnnotations> |
| 86 | <metadata> |
| 87 | <![CDATA[ |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 88 | <ipojo> |
| 89 | <component classname="org.apache.felix.ipojo.arch.ArchCommandImpl" public="false"> |
| 90 | <Provides /> |
Clement Escoffier | e240bf2 | 2010-04-16 14:52:49 +0000 | [diff] [blame] | 91 | <requires field="m_archs" optional="true" proxy="false" /> |
| 92 | <requires field="m_factories" optional="true" proxy="false" /> |
| 93 | <requires field="m_handlers" optional="true" proxy="false" /> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 94 | </component> |
| 95 | <instance component="org.apache.felix.ipojo.arch.ArchCommandImpl" name="ArchCommand" /> |
| 96 | </ipojo> |
| 97 | ]]> |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 98 | </metadata> |
| 99 | </configuration> |
| 100 | </execution> |
| 101 | </executions> |
| 102 | </plugin> |
| 103 | <plugin> |
| 104 | <groupId>org.codehaus.mojo</groupId> |
| 105 | <artifactId>rat-maven-plugin</artifactId> |
| 106 | <configuration> |
| 107 | <excludeSubProjects>false</excludeSubProjects> |
| 108 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 109 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 110 | <excludes> |
| 111 | <param>doc/**/*</param> |
| 112 | <param>maven-eclipse.xml</param> |
| 113 | <param>.checkstyle</param> |
| 114 | <param>.externalToolBuilders/*</param> |
| 115 | <param>LICENSE.asm</param> |
| 116 | </excludes> |
| 117 | </configuration> |
| 118 | </plugin> |
| 119 | <plugin> |
| 120 | <groupId>org.apache.maven.plugins</groupId> |
| 121 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 122 | <configuration> |
| 123 | <enableRulesSummary>false</enableRulesSummary> |
| 124 | <violationSeverity>warning</violationSeverity> |
| 125 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 126 | </configuration> |
| 127 | </plugin> |
| 128 | <plugin> |
| 129 | <groupId>org.apache.maven.plugins</groupId> |
| 130 | <artifactId>maven-compiler-plugin</artifactId> |
| 131 | <configuration> |
| 132 | <target>1.5</target> |
| 133 | <source>1.5</source> |
| 134 | </configuration> |
| 135 | </plugin> |
| 136 | </plugins> |
| 137 | </build> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 138 | </project> |