Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +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 |
| 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 | --> |
| 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> |
| 22 | <groupId>org.apache.felix</groupId> |
| 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 Gogo Command</name> |
| 30 | <artifactId>org.apache.felix.ipojo.arch.gogo</artifactId> |
| 31 | <groupId>org.apache.felix</groupId> |
| 32 | <version>0.9.0-SNAPSHOT</version> |
| 33 | |
| 34 | <description> |
| 35 | Arch command to collect and print information about iPOJO instances. |
| 36 | This command is made for Gogo. |
| 37 | </description> |
| 38 | <url>http://felix.apache.org/site/ipojo-arch-command.html</url> |
| 39 | |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.felix</groupId> |
| 43 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | b84f62f | 2010-06-09 19:57:29 +0000 | [diff] [blame] | 44 | <version>1.6.2</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 49 | <version>1.6.0</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.osgi</groupId> |
| 53 | <artifactId>org.osgi.core</artifactId> |
| 54 | <version>4.2.0</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.osgi</groupId> |
| 58 | <artifactId>org.osgi.compendium</artifactId> |
| 59 | <version>4.0.0</version> |
| 60 | </dependency> |
| 61 | <dependency> |
Clement Escoffier | b84f62f | 2010-06-09 19:57:29 +0000 | [diff] [blame] | 62 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 63 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
Clement Escoffier | b84f62f | 2010-06-09 19:57:29 +0000 | [diff] [blame] | 64 | <version>0.7.0-SNAPSHOT</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 65 | </dependency> |
| 66 | </dependencies> |
| 67 | <build> |
| 68 | <plugins> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.maven.plugins</groupId> |
| 71 | <artifactId>maven-compiler-plugin</artifactId> |
| 72 | <configuration> |
| 73 | <source>1.5</source> |
| 74 | <target>1.5</target> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.apache.felix</groupId> |
| 79 | <artifactId>maven-bundle-plugin</artifactId> |
| 80 | <version>2.0.1</version> |
| 81 | <extensions>true</extensions> |
| 82 | <configuration> |
| 83 | <instructions> |
| 84 | <Bundle-Name>Apache Felix iPOJO Gogo Command</Bundle-Name> |
| 85 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 86 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 87 | <Bundle-Description> |
| 88 | iPOJO Arch command for Gogo |
| 89 | </Bundle-Description> |
| 90 | <Bundle-DocURL> |
| 91 | http://felix.apache.org/site/ipojo-arch-command.html |
| 92 | </Bundle-DocURL> |
| 93 | <Private-Package>org.apache.felix.ipojo.arch.gogo</Private-Package> |
| 94 | <Include-Resource> META-INF/LICENSE=LICENSE, |
| 95 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | b84f62f | 2010-06-09 19:57:29 +0000 | [diff] [blame] | 96 | <Import-Package> |
| 97 | org.apache.felix.service.command;version=0.6.0, * |
| 98 | </Import-Package> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 99 | </instructions> |
| 100 | </configuration> |
| 101 | </plugin> |
| 102 | <plugin> |
| 103 | <groupId>org.apache.felix</groupId> |
| 104 | <artifactId>maven-ipojo-plugin</artifactId> |
| 105 | <version>1.6.0</version> |
| 106 | <executions> |
| 107 | <execution> |
| 108 | <goals> |
| 109 | <goal>ipojo-bundle</goal> |
| 110 | </goals> |
| 111 | </execution> |
| 112 | </executions> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <groupId>org.codehaus.mojo</groupId> |
| 116 | <artifactId>rat-maven-plugin</artifactId> |
| 117 | <configuration> |
| 118 | <excludeSubProjects>false</excludeSubProjects> |
| 119 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 120 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 121 | <excludes> |
| 122 | <param>doc/**/*</param> |
| 123 | <param>maven-eclipse.xml</param> |
| 124 | <param>.checkstyle</param> |
| 125 | <param>.externalToolBuilders/*</param> |
| 126 | <param>LICENSE.asm</param> |
| 127 | </excludes> |
| 128 | </configuration> |
| 129 | </plugin> |
| 130 | <plugin> |
| 131 | <groupId>org.apache.maven.plugins</groupId> |
| 132 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 133 | <configuration> |
| 134 | <enableRulesSummary>false</enableRulesSummary> |
| 135 | <violationSeverity>warning</violationSeverity> |
| 136 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 137 | </configuration> |
| 138 | </plugin> |
| 139 | </plugins> |
| 140 | </build> |
| 141 | </project> |