blob: f5c08520b2db73ec9a6d030e6b1cf03a17beb291 [file] [log] [blame]
Clement Escoffier7eba2e62008-11-23 16:54:28 +00001<!--
Clement Escoffier4cb4ff32009-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 Escoffiera673b242010-09-25 06:22:29 +00009
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffiera673b242010-09-25 06:22:29 +000011
Clement Escoffier4cb4ff32009-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 Escoffier7eba2e62008-11-23 16:54:28 +000018-->
Clement Escoffier3ba75332009-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 Escoffier4cb4ff32009-08-14 12:11:19 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffier4cb4ff32009-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 Escoffier4cb4ff32009-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 Escoffier287a86b2010-09-25 06:33:00 +000039 <!--<version>3.1.0-SNAPSHOT</version> -->
40 <version>3.0.2</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000041 </dependency>
42 <dependency>
43 <groupId>org.apache.maven</groupId>
44 <artifactId>maven-artifact</artifactId>
45 <version>2.0.7</version>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.maven</groupId>
49 <artifactId>maven-project</artifactId>
50 <version>2.0.7</version>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.maven</groupId>
54 <artifactId>maven-model</artifactId>
55 <version>2.0.7</version>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.maven</groupId>
59 <artifactId>maven-plugin-api</artifactId>
60 <version>2.0.7</version>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2a180612011-10-31 15:44:12 +000065 <version>1.9.0-SNAPSHOT</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000066 </dependency>
67 <dependency>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>org.apache.felix.ipojo.handler.extender</artifactId>
Clement Escoffier287a86b2010-09-25 06:33:00 +000070 <version>1.4.0</version>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000071 </dependency>
72 <dependency>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
75 <version>1.1.0-SNAPSHOT</version>
76 </dependency>
77 <dependency>
78 <groupId>net.sourceforge.cobertura</groupId>
79 <artifactId>cobertura</artifactId>
80 <version>1.9</version>
81 </dependency>
Clement Escoffier61457c62009-09-28 07:34:33 +000082 <dependency>
83 <groupId>org.osgi</groupId>
84 <artifactId>org.osgi.core</artifactId>
85 <version>4.2.0</version>
86 </dependency>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000087 </dependencies>
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>rat-maven-plugin</artifactId>
93 <configuration>
94 <excludeSubProjects>false</excludeSubProjects>
95 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
96 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
97 <excludes>
98 <param>doc/*</param>
99 <param>maven-eclipse.xml</param>
100 <param>.checkstyle</param>
101 <param>.externalToolBuilders/*</param>
102 </excludes>
103 </configuration>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-checkstyle-plugin</artifactId>
108 <configuration>
109 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
110 </configuration>
111 </plugin>
112 </plugins>
113 </build>
114</project>