Clement Escoffier | 4b984da | 2009-05-01 07:47:40 +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 | e2d9350 | 2011-02-23 10:59:55 +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 | e2d9350 | 2011-02-23 10:59:55 +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 | 4b984da | 2009-05-01 07:47:40 +0000 | [diff] [blame] | 18 | --> |
| 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 | bfa74d0 | 2009-07-19 16:25:18 +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 | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <packaging>bundle</packaging> |
| 27 | <name>Junit4Osgi-Felix-Command</name> |
| 28 | <artifactId> |
| 29 | org.apache.felix.ipojo.junit4osgi.felix-command |
| 30 | </artifactId> |
| 31 | <version>1.1.0-SNAPSHOT</version> |
| 32 | <dependencies> |
| 33 | <dependency> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 34 | <groupId>${project.groupId}</groupId> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 35 | <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId> |
| 36 | <version>1.1.0-SNAPSHOT</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>org.apache.felix.shell</artifactId> |
| 41 | <version>1.0.2</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>junit</groupId> |
| 45 | <artifactId>junit</artifactId> |
| 46 | <version>3.8.1</version> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.maven.plugins</groupId> |
| 53 | <artifactId>maven-compiler-plugin</artifactId> |
| 54 | <configuration> |
| 55 | <source>1.4</source> |
| 56 | <target>1.4</target> |
| 57 | </configuration> |
| 58 | </plugin> |
| 59 | <plugin> |
| 60 | <groupId>org.apache.felix</groupId> |
| 61 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 39ebcd9 | 2011-08-18 11:35:29 +0000 | [diff] [blame] | 62 | <version>2.3.5</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 63 | <extensions>true</extensions> |
| 64 | <configuration> |
| 65 | <instructions> |
| 66 | <Bundle-Name> Apache Felix iPOJO OSGi Junit Runner - Felix Command |
| 67 | </Bundle-Name> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 68 | <Bundle-SymbolicName> ${project.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 69 | <Private-Package> org.apache.felix.ipojo.junit4osgi.command |
| 70 | </Private-Package> |
| 71 | <Include-Resource> META-INF/LICENSE=LICENSE, |
| 72 | META-INF/NOTICE=NOTICE </Include-Resource> |
Clement Escoffier | 39ebcd9 | 2011-08-18 11:35:29 +0000 | [diff] [blame] | 73 | <_plugin>org.apache.felix.ipojo.bnd.PojoizationPlugin;metadata=${basedir}/metadata.xml;use-local-schemas=true</_plugin> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 74 | </instructions> |
| 75 | </configuration> |
Clement Escoffier | 39ebcd9 | 2011-08-18 11:35:29 +0000 | [diff] [blame] | 76 | <dependencies> |
| 77 | <dependency> |
| 78 | <groupId>org.apache.felix</groupId> |
| 79 | <artifactId>bnd-ipojo-plugin</artifactId> |
| 80 | <version>1.0.0-SNAPSHOT</version> |
| 81 | </dependency> |
| 82 | </dependencies> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 83 | </plugin> |
| 84 | <plugin> |
| 85 | <groupId>org.codehaus.mojo</groupId> |
| 86 | <artifactId>rat-maven-plugin</artifactId> |
| 87 | <configuration> |
| 88 | <excludeSubProjects>false</excludeSubProjects> |
| 89 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 90 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 91 | <excludes> |
| 92 | <param>doc/*</param> |
| 93 | <param>maven-eclipse.xml</param> |
| 94 | <param>.checkstyle</param> |
| 95 | <param>.externalToolBuilders/*</param> |
| 96 | </excludes> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | <plugin> |
| 100 | <groupId>org.apache.maven.plugins</groupId> |
| 101 | <artifactId>maven-checkstyle-plugin |
| 102 | </artifactId> |
| 103 | <configuration> |
| 104 | <configLocation> |
| 105 | http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml |
| 106 | </configLocation> |
| 107 | </configuration> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | </build> |
Clement Escoffier | 4b984da | 2009-05-01 07:47:40 +0000 | [diff] [blame] | 111 | </project> |