blob: 53a1e7ad419f1a34cb0418e9917aa7614cd82c4f [file] [log] [blame]
Clement Escoffier20578b62008-11-23 16:54:28 +00001<!--
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 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 Escoffier88d7d6b2008-12-01 17:44:13 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffiere2591592009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffier88d7d6b2008-12-01 17:44:13 +000024 </parent>
Clement Escoffier20578b62008-11-23 16:54:28 +000025 <modelVersion>4.0.0</modelVersion>
Clement Escoffier20578b62008-11-23 16:54:28 +000026 <artifactId>maven-junit4osgi-plugin</artifactId>
27 <packaging>maven-plugin</packaging>
Clement Escoffieraab46132009-05-01 07:55:16 +000028 <version>1.0.0</version>
Clement Escoffier1c15ed02008-11-23 17:17:38 +000029 <name>Junit4OSGi Maven Plugin</name>
Clement Escoffier20578b62008-11-23 16:54:28 +000030 <dependencies>
31 <dependency>
32 <groupId>org.apache.maven</groupId>
33 <artifactId>maven-plugin-api</artifactId>
34 <version>2.0</version>
35 </dependency>
36 <dependency>
37 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
39 <version>3.8.1</version>
Clement Escoffier20578b62008-11-23 16:54:28 +000040 </dependency>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.framework</artifactId>
Clement Escoffiere73d9522009-05-01 07:45:10 +000044 <version>1.6.1</version>
Clement Escoffier20578b62008-11-23 16:54:28 +000045 </dependency>
46 <dependency>
47 <groupId>org.apache.maven</groupId>
48 <artifactId>maven-artifact</artifactId>
49 <version>2.0.7</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.maven</groupId>
53 <artifactId>maven-project</artifactId>
54 <version>2.0.7</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.maven</groupId>
58 <artifactId>maven-model</artifactId>
59 <version>2.0.7</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.maven</groupId>
63 <artifactId>maven-plugin-api</artifactId>
64 <version>2.0.7</version>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiere73d9522009-05-01 07:45:10 +000069 <version>1.2.0</version>
Clement Escoffier20578b62008-11-23 16:54:28 +000070 </dependency>
71 <dependency>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.ipojo.handler.extender</artifactId>
Clement Escoffiere73d9522009-05-01 07:45:10 +000074 <version>1.2.0</version>
Clement Escoffier20578b62008-11-23 16:54:28 +000075 <scope>runtime</scope>
76 </dependency>
77 <dependency>
Clement Escoffier9fe4ec82008-12-01 17:06:11 +000078 <groupId>org.apache.felix</groupId>
Clement Escoffier20578b62008-11-23 16:54:28 +000079 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffiere73d9522009-05-01 07:45:10 +000080 <version>1.0.0</version>
Clement Escoffier20578b62008-11-23 16:54:28 +000081 </dependency>
Clement Escoffier8d888352008-12-10 12:29:41 +000082 <dependency>
83 <groupId>net.sourceforge.cobertura</groupId>
84 <artifactId>cobertura</artifactId>
85 <version>1.9</version>
86 </dependency>
Clement Escoffier20578b62008-11-23 16:54:28 +000087 </dependencies>
Clement Escoffier9fe4ec82008-12-01 17:06:11 +000088 <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>
Clement Escoffieraab46132009-05-01 07:55:16 +0000114
115 <scm>
116 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-junit4osgi-plugin-1.0.0</connection>
117 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-junit4osgi-plugin-1.0.0</developerConnection>
118 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-junit4osgi-plugin-1.0.0</url>
119 </scm>
Clement Escoffier20578b62008-11-23 16:54:28 +0000120</project>