blob: 99844e870794171df3bc4424026c65ef293e4d9a [file] [log] [blame]
Clement Escoffier73aeed82008-10-06 07:55:39 +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
Clement Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier73aeed82008-10-06 07:55:39 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier73aeed82008-10-06 07:55:39 +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.
18-->
Clement Escoffierf4622e52010-05-01 10:21:51 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Clement Escoffierae163cc2010-08-22 14:10:08 +000020 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Clement Escoffierf4622e52010-05-01 10:21:51 +000021 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 </parent>
Clement Escoffier73aeed82008-10-06 07:55:39 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>iPOJO Manipulation Test Suite For Java 5</name>
29 <artifactId>tests.manipulation.java5</artifactId>
30 <groupId>ipojo.tests</groupId>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000031 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier73aeed82008-10-06 07:55:39 +000032 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier86ea4652010-04-29 15:53:58 +000036 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier73aeed82008-10-06 07:55:39 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier73aeed82008-10-06 07:55:39 +000041 </dependency>
42 <dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000043 <groupId>org.osgi</groupId>
Clement Escoffier73aeed82008-10-06 07:55:39 +000044 <artifactId>org.osgi.core</artifactId>
Clement Escoffier73aeed82008-10-06 07:55:39 +000045 </dependency>
46 <dependency>
47 <groupId>junit</groupId>
48 <artifactId>junit</artifactId>
49 <version>3.8.1</version>
50 </dependency>
51 <dependency>
Clement Escoffier91fad492008-12-01 19:42:13 +000052 <groupId>org.apache.felix</groupId>
Clement Escoffier73aeed82008-10-06 07:55:39 +000053 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000054 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier73aeed82008-10-06 07:55:39 +000055 </dependency>
Clement Escoffierf4622e52010-05-01 10:21:51 +000056 <dependency>
57 <groupId>org.osgi</groupId>
58 <artifactId>org.osgi.compendium</artifactId>
59 <version>4.0.0</version>
60 </dependency>
Clement Escoffier73aeed82008-10-06 07:55:39 +000061 </dependencies>
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier73aeed82008-10-06 07:55:39 +000067 <extensions>true</extensions>
68 <configuration>
69 <instructions>
70 <Export-Package>
71 org.apache.felix.ipojo.test.scenarios.manipulation.service
72 </Export-Package>
73 <Bundle-SymbolicName>
Clement Escoffierfe606902010-05-01 10:46:02 +000074 ${project.artifactId}
Clement Escoffier73aeed82008-10-06 07:55:39 +000075 </Bundle-SymbolicName>
76 <Private-Package>
77 org.apache.felix.ipojo.test*
78 </Private-Package>
79 <Test-Suite>
80 org.apache.felix.ipojo.test.scenarios.manipulation.ManipulationTestSuite
81 </Test-Suite>
82 </instructions>
83 </configuration>
84 </plugin>
85 <plugin>
86 <groupId>org.apache.felix</groupId>
87 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierae163cc2010-08-22 14:10:08 +000088 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier73aeed82008-10-06 07:55:39 +000089 <executions>
90 <execution>
91 <goals>
92 <goal>ipojo-bundle</goal>
93 </goals>
Clement Escoffier73aeed82008-10-06 07:55:39 +000094 </execution>
95 </executions>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-compiler-plugin</artifactId>
100 <configuration>
101 <source>1.5</source>
102 <target>1.5</target>
103 </configuration>
104 </plugin>
Clement Escoffierae163cc2010-08-22 14:10:08 +0000105
106 <plugin>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-junit4osgi-plugin</artifactId>
109 <version>1.1.0-SNAPSHOT</version>
110 <executions>
111 <execution>
112 <goals>
113 <goal>test</goal>
114 </goals>
115 <configuration>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
Clement Escoffier73aeed82008-10-06 07:55:39 +0000120 </plugins>
121 </build>
122</project>