blob: 98e150cd29b3f65a97fdeb0e44f4b3fdecf8db41 [file] [log] [blame]
Clement Escoffierce0e1e52008-03-28 15:33:36 +00001<!--
Clement Escoffier057f1582012-04-21 11:03:41 +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 Escoffier057f1582012-04-21 11:03:41 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffier057f1582012-04-21 11:03:41 +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 Escoffierce0e1e52008-03-28 15:33:36 +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"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Clement Escoffier057f1582012-04-21 11:03:41 +000021 <parent>
22 <groupId>ipojo.tests</groupId>
23 <artifactId>ipojo.tests</artifactId>
24 <version>1.5.0-SNAPSHOT</version>
25 <relativePath>../../pom.xml</relativePath>
26 </parent>
Clement Escoffier03e1db72010-05-01 10:21:51 +000027
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000028 <modelVersion>4.0.0</modelVersion>
29 <packaging>bundle</packaging>
30 <name>iPOJO Service Providing Test Suite</name>
31 <artifactId>tests.core.ps</artifactId>
32 <groupId>ipojo.tests</groupId>
Clement Escoffier84075052011-02-23 10:36:42 +000033 <version>${ipojo.core.snapshot}</version>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000034 <dependencies>
35 <dependency>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier057f1582012-04-21 11:03:41 +000038 <version>${ipojo.core.snapshot}</version>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000039 </dependency>
40 <dependency>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000043 </dependency>
44 <dependency>
Clement Escoffier03e1db72010-05-01 10:21:51 +000045 <groupId>org.osgi</groupId>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000046 <artifactId>org.osgi.core</artifactId>
Clement Escoffier03e1db72010-05-01 10:21:51 +000047 </dependency>
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.compendium</artifactId>
51 <version>4.0.0</version>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000052 </dependency>
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 <version>3.8.1</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
61 <version>1.1.0-SNAPSHOT</version>
62 </dependency>
63 </dependencies>
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000069 <extensions>true</extensions>
70 <configuration>
71 <instructions>
72 <Export-Package>
73 org.apache.felix.ipojo.test.scenarios.ps.service
74 </Export-Package>
75 <Bundle-SymbolicName>
Clement Escoffier134b0062010-05-01 10:46:02 +000076 ${project.artifactId}
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000077 </Bundle-SymbolicName>
78 <Private-Package>
79 org.apache.felix.ipojo.test*
80 </Private-Package>
81 <Test-Suite>
82 org.apache.felix.ipojo.test.scenarios.ps.ProvidedServiceTestSuite
83 </Test-Suite>
84 </instructions>
85 </configuration>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierbd57d112012-10-28 14:29:10 +000090 <version>${ipojo.manipulator.snapshot}</version>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +000091 <executions>
92 <execution>
93 <goals>
94 <goal>ipojo-bundle</goal>
95 </goals>
96 <configuration>
97 <ignoreAnnotations>true</ignoreAnnotations>
98 </configuration>
99 </execution>
100 </executions>
Clement Escoffierf4d84772010-05-04 15:22:36 +0000101 <dependencies>
Clement Escoffier057f1582012-04-21 11:03:41 +0000102 <dependency>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier7065e322012-11-08 09:01:23 +0000105 <version>${ipojo.manipulator.snapshot}</version>
Clement Escoffier057f1582012-04-21 11:03:41 +0000106 </dependency>
Clement Escoffierf4d84772010-05-04 15:22:36 +0000107 </dependencies>
Clement Escoffier5f7d5a82010-02-24 18:15:44 +0000108 </plugin>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-compiler-plugin</artifactId>
112 <configuration>
113 <source>1.4</source>
114 <target>1.4</target>
115 </configuration>
116 </plugin>
Clement Escoffier2fdda122010-04-29 15:53:58 +0000117
Clement Escoffier5f7d5a82010-02-24 18:15:44 +0000118 <plugin>
119 <groupId>org.apache.felix</groupId>
120 <artifactId>maven-junit4osgi-plugin</artifactId>
121 <version>1.1.0-SNAPSHOT</version>
122 <executions>
123 <execution>
124 <goals>
125 <goal>test</goal>
126 </goals>
127 <configuration>
128 <configuration>
129 <org.osgi.http.port>8083</org.osgi.http.port>
130 </configuration>
131 </configuration>
132 </execution>
133 </executions>
134 </plugin>
135 </plugins>
136 </build>
Clement Escoffierce0e1e52008-03-28 15:33:36 +0000137</project>