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 | --> |
Clement Escoffier | d20a28b | 2013-05-15 16:18:23 +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 | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Clement Escoffier | 5453425 | 2013-06-12 12:46:17 +0000 | [diff] [blame] | 24 | <relativePath>../../../pom/pom.xml</relativePath> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
Clement Escoffier | 5453425 | 2013-06-12 12:46:17 +0000 | [diff] [blame] | 28 | <name>Apache Felix iPOJO Gogo Command</name> |
| 29 | <artifactId>org.apache.felix.ipojo.gogo</artifactId> |
Clement Escoffier | d87e55b | 2014-12-16 13:29:36 +0000 | [diff] [blame^] | 30 | <version>1.12.2-SNAPSHOT</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 31 | |
| 32 | <description> |
Clement Escoffier | 5453425 | 2013-06-12 12:46:17 +0000 | [diff] [blame] | 33 | Provides commands for the Gogo shell to introspect the iPOJO ecosystem. |
Clement Escoffier | 8c05b5b | 2010-07-18 16:05:19 +0000 | [diff] [blame] | 34 | </description> |
Clement Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 35 | <url> |
| 36 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html |
| 37 | </url> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | d87e55b | 2014-12-16 13:29:36 +0000 | [diff] [blame^] | 43 | <version>1.12.2-SNAPSHOT</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.apache.felix</groupId> |
| 47 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
Clement Escoffier | 90f9a5b | 2014-12-16 13:28:01 +0000 | [diff] [blame] | 48 | <version>1.12.1</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.osgi</groupId> |
| 52 | <artifactId>org.osgi.core</artifactId> |
| 53 | <version>4.2.0</version> |
Clement Escoffier | 0e62350 | 2014-05-07 19:15:41 +0000 | [diff] [blame] | 54 | <scope>provided</scope> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.osgi</groupId> |
| 58 | <artifactId>org.osgi.compendium</artifactId> |
| 59 | <version>4.0.0</version> |
Clement Escoffier | 0e62350 | 2014-05-07 19:15:41 +0000 | [diff] [blame] | 60 | <scope>provided</scope> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
Clement Escoffier | b84f62f | 2010-06-09 19:57:29 +0000 | [diff] [blame] | 63 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 64 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
Clement Escoffier | 3cad63c | 2010-09-24 15:37:43 +0000 | [diff] [blame] | 65 | <version>0.6.1</version> |
Clement Escoffier | 0e62350 | 2014-05-07 19:15:41 +0000 | [diff] [blame] | 66 | <scope>provided</scope> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 67 | </dependency> |
| 68 | </dependencies> |
| 69 | <build> |
| 70 | <plugins> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.maven.plugins</groupId> |
| 73 | <artifactId>maven-compiler-plugin</artifactId> |
| 74 | <configuration> |
| 75 | <source>1.5</source> |
| 76 | <target>1.5</target> |
| 77 | </configuration> |
| 78 | </plugin> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.felix</groupId> |
| 81 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 82 | <version>2.3.7</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 83 | <extensions>true</extensions> |
| 84 | <configuration> |
| 85 | <instructions> |
| 86 | <Bundle-Name>Apache Felix iPOJO Gogo Command</Bundle-Name> |
| 87 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 88 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 89 | <Bundle-Description> |
Clement Escoffier | 5453425 | 2013-06-12 12:46:17 +0000 | [diff] [blame] | 90 | Gogo commands for iPOJO |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 91 | </Bundle-Description> |
| 92 | <Bundle-DocURL> |
Clement Escoffier | b76fae7 | 2013-05-28 04:37:54 +0000 | [diff] [blame] | 93 | http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-tools/ipojo-arch-command.html |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 94 | </Bundle-DocURL> |
| 95 | <Private-Package>org.apache.felix.ipojo.arch.gogo</Private-Package> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +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> |
Clement Escoffier | cc18202 | 2013-10-08 14:09:24 +0000 | [diff] [blame] | 105 | <version>1.10.1</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 106 | <executions> |
| 107 | <execution> |
| 108 | <goals> |
| 109 | <goal>ipojo-bundle</goal> |
| 110 | </goals> |
| 111 | </execution> |
| 112 | </executions> |
| 113 | </plugin> |
| 114 | <plugin> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 115 | <groupId>org.apache.maven.plugins</groupId> |
| 116 | <artifactId>maven-checkstyle-plugin</artifactId> |
Guillaume Sauthier | c05747c | 2013-07-01 15:32:30 +0000 | [diff] [blame] | 117 | <version>2.10</version> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 118 | <configuration> |
| 119 | <enableRulesSummary>false</enableRulesSummary> |
| 120 | <violationSeverity>warning</violationSeverity> |
| 121 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 122 | </configuration> |
| 123 | </plugin> |
| 124 | </plugins> |
| 125 | </build> |
Clement Escoffier | 4fc651e | 2010-05-08 07:34:42 +0000 | [diff] [blame] | 126 | </project> |