blob: a6ef97de730acfbe4ece8249f875cdcfe8177dda [file] [log] [blame]
Clement Escoffiercb3c7922009-05-01 07:51:58 +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
Clement Escoffiere2d93502011-02-23 10:59:55 +00009
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffiere2d93502011-02-23 10:59:55 +000011
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000012 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 Escoffiercb3c7922009-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 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 <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>
Clement Escoffier134b0062010-05-01 10:46:02 +000032 <groupId>${project.groupId}</groupId>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000033 <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>
Clement Escoffier39ebcd92011-08-18 11:35:29 +000055 <version>2.3.5</version>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000056 <extensions>true</extensions>
57 <configuration>
58 <instructions>
59 <Bundle-Name>Apache Felix iPOJO OSGi Junit Runner - Swing Gui</Bundle-Name>
Clement Escoffier134b0062010-05-01 10:46:02 +000060 <Bundle-SymbolicName> ${project.artifactId}</Bundle-SymbolicName>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000061 <Private-Package> org.apache.felix.ipojo.junit4osgi.command
62 </Private-Package>
63 <Import-Package>org.osgi.framework;version=1.3,*
64 </Import-Package>
Clement Escoffier39ebcd92011-08-18 11:35:29 +000065 <_plugin>org.apache.felix.ipojo.bnd.PojoizationPlugin;metadata=${basedir}/metadata.xml;use-local-schemas=true</_plugin>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000066 </instructions>
67 </configuration>
Clement Escoffier39ebcd92011-08-18 11:35:29 +000068 <dependencies>
69 <dependency>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>bnd-ipojo-plugin</artifactId>
72 <version>1.0.0-SNAPSHOT</version>
73 </dependency>
74 </dependencies>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000075 </plugin>
76 <plugin>
77 <groupId>org.codehaus.mojo</groupId>
78 <artifactId>rat-maven-plugin</artifactId>
79 <configuration>
80 <excludeSubProjects>false</excludeSubProjects>
81 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
82 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
83 <excludes>
84 <param>doc/*</param>
85 <param>maven-eclipse.xml</param>
86 <param>.checkstyle</param>
87 <param>.externalToolBuilders/*</param>
88 </excludes>
89 </configuration>
90 </plugin>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-checkstyle-plugin
94 </artifactId>
95 <configuration>
96 <configLocation>
97 http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml
98 </configLocation>
99 <violationSeverity>error</violationSeverity>
100 </configuration>
101 </plugin>
102 </plugins>
Clement Escoffiercb3c7922009-05-01 07:51:58 +0000103</build>
Clement Escoffiercb3c7922009-05-01 07:51:58 +0000104</project>