blob: 75f3df5226cdf702b69083604ace805c70a9d5ba [file] [log] [blame]
Clement Escoffierc2cadf42009-05-01 07:51:58 +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
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 Escoffierc2cadf42009-05-01 07:51:58 +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 Escoffier4cb4ff32009-08-14 12:11:19 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <packaging>bundle</packaging>
27 <name>Junit4Osgi-Swing-GUI</name>
28 <artifactId>org.apache.felix.ipojo.junit4osgi.swing-gui</artifactId>
29 <version>1.1.0-SNAPSHOT</version>
30 <dependencies>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
34 <version>1.1.0-SNAPSHOT</version>
35 </dependency>
36 <dependency>
37 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
39 <version>3.8.1</version>
40 </dependency>
41 </dependencies>
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-compiler-plugin</artifactId>
47 <configuration>
48 <source>1.5</source>
49 <target>1.5</target>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
55 <version>1.4.3</version>
56 <extensions>true</extensions>
57 <configuration>
58 <instructions>
59 <Bundle-Name>Apache Felix iPOJO OSGi Junit Runner - Swing Gui</Bundle-Name>
60 <Bundle-SymbolicName> ${pom.artifactId}</Bundle-SymbolicName>
61 <Private-Package> org.apache.felix.ipojo.junit4osgi.command
62 </Private-Package>
63 <Import-Package>org.osgi.framework;version=1.3,*
64 </Import-Package>
65 </instructions>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-ipojo-plugin</artifactId>
71 <version>1.5.0-SNAPSHOT</version>
72 <executions>
73 <execution>
74 <goals>
75 <goal>ipojo-bundle</goal>
76 </goals>
77 <configuration>
78 <ignoreAnnotations>true</ignoreAnnotations>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>rat-maven-plugin</artifactId>
86 <configuration>
87 <excludeSubProjects>false</excludeSubProjects>
88 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
89 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
90 <excludes>
91 <param>doc/*</param>
92 <param>maven-eclipse.xml</param>
93 <param>.checkstyle</param>
94 <param>.externalToolBuilders/*</param>
95 </excludes>
96 </configuration>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-checkstyle-plugin
101 </artifactId>
102 <configuration>
103 <configLocation>
104 http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml
105 </configLocation>
106 <violationSeverity>error</violationSeverity>
107 </configuration>
108 </plugin>
109 </plugins>
Clement Escoffierc2cadf42009-05-01 07:51:58 +0000110</build>
Clement Escoffierc2cadf42009-05-01 07:51:58 +0000111</project>