blob: 785248c4e390e092fd402bd60d77da19d1ac16be [file] [log] [blame]
Clement Escoffier20578b62008-11-23 16:54:28 +00001<!--
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +00002 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 Escoffiera23737a2010-09-25 06:22:29 +00009
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffiera23737a2010-09-25 06:22:29 +000011
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000012 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 Escoffier20578b62008-11-23 16:54:28 +000018-->
Clement Escoffieraab46132009-05-01 07:55:16 +000019<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 Escoffieraf9ad1b2009-08-14 12:11:19 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000023 <version>2.1</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <artifactId>maven-junit4osgi-plugin</artifactId>
27 <packaging>maven-plugin</packaging>
28 <version>1.1.0-SNAPSHOT</version>
29 <name>Junit4OSGi Maven Plugin</name>
30 <dependencies>
31 <dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000032 <groupId>junit</groupId>
33 <artifactId>junit</artifactId>
34 <version>3.8.1</version>
35 </dependency>
36 <dependency>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.framework</artifactId>
Clement Escoffier87514192012-11-08 08:58:27 +000039 <version>4.0.3</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000040 </dependency>
41 <dependency>
42 <groupId>org.apache.maven</groupId>
43 <artifactId>maven-artifact</artifactId>
44 <version>2.0.7</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.maven</groupId>
48 <artifactId>maven-project</artifactId>
49 <version>2.0.7</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.maven</groupId>
53 <artifactId>maven-model</artifactId>
54 <version>2.0.7</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.maven</groupId>
58 <artifactId>maven-plugin-api</artifactId>
59 <version>2.0.7</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier5e77a4f2011-10-31 15:44:12 +000064 <version>1.9.0-SNAPSHOT</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000065 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.ipojo.handler.extender</artifactId>
Clement Escoffierdf3efbc2010-09-25 06:33:00 +000069 <version>1.4.0</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000070 </dependency>
71 <dependency>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
74 <version>1.1.0-SNAPSHOT</version>
75 </dependency>
76 <dependency>
77 <groupId>net.sourceforge.cobertura</groupId>
78 <artifactId>cobertura</artifactId>
79 <version>1.9</version>
80 </dependency>
Clement Escoffiered1c30c2009-09-28 07:34:33 +000081 <dependency>
82 <groupId>org.osgi</groupId>
83 <artifactId>org.osgi.core</artifactId>
84 <version>4.2.0</version>
85 </dependency>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000086 </dependencies>
87 <build>
88 <plugins>
89 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>rat-maven-plugin</artifactId>
92 <configuration>
93 <excludeSubProjects>false</excludeSubProjects>
94 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
95 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
96 <excludes>
97 <param>doc/*</param>
98 <param>maven-eclipse.xml</param>
99 <param>.checkstyle</param>
100 <param>.externalToolBuilders/*</param>
101 </excludes>
102 </configuration>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-checkstyle-plugin</artifactId>
107 <configuration>
108 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
109 </configuration>
110 </plugin>
111 </plugins>
112 </build>
113</project>