blob: da9bae5aab54023fa5ba64d333f292a3e195f3bc [file] [log] [blame]
Clement Escoffierce0e1e52008-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>
20 <parent>
21 <groupId>ipojo.examples</groupId>
22 <artifactId>Junit4Osgi</artifactId>
23 <version>0.7.6-SNAPSHOT</version>
24 <relativePath>../pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Junit4Osgi-Swing-GUI</name>
29 <artifactId>org.apache.felix.ipojo.junit4osgi.swing-gui</artifactId>
30 <dependencies>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
34 <version>${pom.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.shell</artifactId>
39 <version>1.0.0</version>
40 </dependency>
41 <dependency>
42 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 <version>3.8.1</version>
45 </dependency>
46 </dependencies>
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-compiler-plugin</artifactId>
52 <configuration>
53 <source>1.5</source>
54 <target>1.5</target>
55 </configuration>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
60 <version>1.4.0</version>
61 <extensions>true</extensions>
62 <configuration>
63 <instructions>
64 <Bundle-Name>
65 iPOJO OSGi Junit Runner - Swing Gui
66 </Bundle-Name>
67 <Bundle-SymbolicName>
68 ${pom.artifactId}
69 </Bundle-SymbolicName>
70 <Private-Package>
71 org.apache.felix.ipojo.junit4osgi.command
72 </Private-Package>
73 </instructions>
74 </configuration>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-ipojo-plugin</artifactId>
79 <version>${pom.version}</version>
80 <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 </plugins>
92 </build>
93 <repositories>
94 <repository>
95 <id>unknown-jars-temp-repo</id>
96 <name>
97 A temporary repository created by NetBeans for libraries
98 and jars it could not identify. Please replace the
99 dependencies in this repository with correct ones and
100 delete this repository.
101 </name>
102 <url>file:${project.basedir}/lib</url>
103 </repository>
104 </repositories>
105</project>