blob: 7c68ac9d6084a12af94a3a034b721d68f0b27e9b [file] [log] [blame]
Clement Escoffier39deaff2008-10-06 07:55:39 +00001<!--
Clement Escoffier84075052011-02-23 10:36:42 +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 Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffier84075052011-02-23 10:36:42 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffier84075052011-02-23 10:36:42 +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 Escoffier39deaff2008-10-06 07:55:39 +000018-->
Clement Escoffier03e1db72010-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 Escoffier84075052011-02-23 10:36:42 +000020 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier057f1582012-04-21 11:03:41 +000025 <relativePath>../../pom.xml</relativePath>
Clement Escoffier84075052011-02-23 10:36:42 +000026 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <name>iPOJO Manipulation Test Suite For Java 5</name>
30 <artifactId>tests.manipulation.java5</artifactId>
31 <groupId>ipojo.tests</groupId>
Clement Escoffierbd57d112012-10-28 14:29:10 +000032 <version>${ipojo.manipulator.snapshot}</version>
Clement Escoffier84075052011-02-23 10:36:42 +000033 <dependencies>
34 <dependency>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000037 <version>${ipojo.core.snapshot}</version>
Clement Escoffier84075052011-02-23 10:36:42 +000038 </dependency>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.osgi</groupId>
45 <artifactId>org.osgi.core</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <version>3.8.1</version>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
55 <version>1.1.0-SNAPSHOT</version>
56 </dependency>
57 <dependency>
58 <groupId>org.osgi</groupId>
59 <artifactId>org.osgi.compendium</artifactId>
60 <version>4.0.0</version>
61 </dependency>
62 </dependencies>
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
68 <extensions>true</extensions>
69 <configuration>
70 <instructions>
71 <Export-Package>
72 org.apache.felix.ipojo.test.scenarios.manipulation.service
73 </Export-Package>
74 <Bundle-SymbolicName>
75 ${project.artifactId}
76 </Bundle-SymbolicName>
77 <Private-Package>
78 org.apache.felix.ipojo.test*
79 </Private-Package>
80 <Test-Suite>
81 org.apache.felix.ipojo.test.scenarios.manipulation.ManipulationTestSuite
82 </Test-Suite>
83 </instructions>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierbd57d112012-10-28 14:29:10 +000089 <version>${ipojo.manipulator.snapshot}</version>
Clement Escoffier84075052011-02-23 10:36:42 +000090 <executions>
91 <execution>
92 <goals>
93 <goal>ipojo-bundle</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-compiler-plugin</artifactId>
101 <configuration>
102 <source>1.5</source>
103 <target>1.5</target>
104 </configuration>
105 </plugin>
Clement Escoffieraf409f52010-08-22 14:10:08 +0000106
Clement Escoffier84075052011-02-23 10:36:42 +0000107 <plugin>
108 <groupId>org.apache.felix</groupId>
109 <artifactId>maven-junit4osgi-plugin</artifactId>
110 <version>1.1.0-SNAPSHOT</version>
111 <executions>
112 <execution>
113 <goals>
114 <goal>test</goal>
115 </goals>
116 <configuration>
117 </configuration>
118 </execution>
119 </executions>
120 </plugin>
121 </plugins>
122 </build>
Clement Escoffier39deaff2008-10-06 07:55:39 +0000123</project>