blob: 2f9201a0e84ed1575281a0c6de69d0356d9eeb3d [file] [log] [blame]
Clement Escoffier4b984da2009-05-01 07:47:40 +00001<!--
Clement Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffier4b984da2009-05-01 07:47:40 +000018-->
19<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 Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffierbfa74d02009-07-19 16:25:18 +000024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>bundle</packaging>
27 <name>Junit4Osgi-Felix-Command</name>
28 <artifactId>
29 org.apache.felix.ipojo.junit4osgi.felix-command
30 </artifactId>
31 <version>1.1.0-SNAPSHOT</version>
32 <dependencies>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
36 <version>1.1.0-SNAPSHOT</version>
37 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.shell</artifactId>
41 <version>1.0.2</version>
42 </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.4</source>
56 <target>1.4</target>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
62 <version>1.4.3</version>
63 <extensions>true</extensions>
64 <configuration>
65 <instructions>
66 <Bundle-Name> Apache Felix iPOJO OSGi Junit Runner - Felix Command
67 </Bundle-Name>
68 <Bundle-SymbolicName> ${pom.artifactId}</Bundle-SymbolicName>
69 <Private-Package> org.apache.felix.ipojo.junit4osgi.command
70 </Private-Package>
71 <Include-Resource> META-INF/LICENSE=LICENSE,
72 META-INF/NOTICE=NOTICE </Include-Resource>
73 </instructions>
74 </configuration>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000079 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +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>
91 <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>
116 </plugins>
117 </build>
Clement Escoffier4b984da2009-05-01 07:47:40 +0000118</project>