blob: 108568682b1713979a7a3cd909e8f0edc7a098ce [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
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.
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 Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.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 Escoffier7a5248a2010-06-22 19:40:39 +000039 <version>3.1.0-SNAPSHOT</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 Escoffier2fdda122010-04-29 15:53:58 +000064 <version>1.7.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>
69 <version>1.5.0-SNAPSHOT</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>