blob: 833dbc8fe53ce9f18beb0c028d554540f25455b1 [file] [log] [blame]
Clement Escoffiere50ede52008-03-28 15:33:36 +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-->
19<project>
Clement Escoffier3d804192008-12-01 17:44:13 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 </parent>
Clement Escoffiere50ede52008-03-28 15:33:36 +000025 <modelVersion>4.0.0</modelVersion>
26 <packaging>bundle</packaging>
27 <name>Junit4Osgi-Immediate-Runner</name>
28 <artifactId>
29 org.apache.felix.ipojo.junit4osgi.immediate-runner
30 </artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000031 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000032 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000036 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.shell</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000041 <version>1.0.2</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000042 </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.5</source>
56 <target>1.5</target>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000062 <version>1.4.3</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000063 <extensions>true</extensions>
64 <configuration>
65 <instructions>
Clement Escoffiera6be7932009-01-14 14:07:17 +000066 <Bundle-Name> Apache Felix iPOJO OSGi Junit Runner - Immediate Runner
Clement Escoffiere50ede52008-03-28 15:33:36 +000067 </Bundle-Name>
Clement Escoffierad0ffaf2008-12-01 17:06:11 +000068 <Bundle-SymbolicName> ${pom.artifactId}</Bundle-SymbolicName>
69 <Private-Package> org.apache.felix.ipojo.junit4osgi.command
Clement Escoffiere50ede52008-03-28 15:33:36 +000070 </Private-Package>
Clement Escoffierad0ffaf2008-12-01 17:06:11 +000071 <Include-Resource> META-INF/LICENCE=LICENSE,
72 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffiere50ede52008-03-28 15:33:36 +000073 </instructions>
74 </configuration>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier9a9ffda2009-02-16 10:13:55 +000079 <version>1.3.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000080 <executions>
81 <execution>
82 <goals>
83 <goal>ipojo-bundle</goal>
84 </goals>
85 <configuration>
86 <ignoreAnnotations>true</ignoreAnnotations>
87 </configuration>
88 </execution>
89 </executions>
90 </plugin>
Clement Escoffierad0ffaf2008-12-01 17:06:11 +000091 <plugin>
92 <groupId>org.codehaus.mojo</groupId>
93 <artifactId>rat-maven-plugin</artifactId>
94 <configuration>
95 <excludeSubProjects>false</excludeSubProjects>
96 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
97 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
98 <excludes>
99 <param>doc/*</param>
100 <param>maven-eclipse.xml</param>
101 <param>.checkstyle</param>
102 <param>.externalToolBuilders/*</param>
103 </excludes>
104 </configuration>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-checkstyle-plugin
109 </artifactId>
110 <configuration>
111 <configLocation>
112 http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml
113 </configLocation>
114 </configuration>
115 </plugin>
Clement Escoffiere50ede52008-03-28 15:33:36 +0000116 </plugins>
117 </build>
118</project>