blob: 194210805c0df5fea1f454dd59e3586f9376eaa2 [file] [log] [blame]
Clement Escoffiercdb4b172008-04-29 22:25:39 +00001<!--
Clement Escoffier0f181552009-11-29 10:06:36 +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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier0f181552009-11-29 10:06:36 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier0f181552009-11-29 10:06:36 +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 Escoffiercdb4b172008-04-29 22:25:39 +000018-->
19<project>
Clement Escoffier0f181552009-11-29 10:06:36 +000020 <modelVersion>4.0.0</modelVersion>
21 <packaging>bundle</packaging>
22 <name>iPOJO Annotations Test Suite</name>
23 <artifactId>tests.core.annotations</artifactId>
24 <groupId>ipojo.tests</groupId>
25 <version>1.5.0-SNAPSHOT</version>
26 <dependencies>
27 <dependency>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>org.apache.felix.ipojo</artifactId>
30 <version>${pom.version}</version>
31 </dependency>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo.metadata
35 </artifactId>
36 <version>${pom.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.osgi.core</artifactId>
41 <version>1.0.1</version>
42 </dependency>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
46 <version>3.8.1</version>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
51 <version>1.1.0-SNAPSHOT</version>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
56 <version>${pom.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
61 <version>${pom.version}</version>
62 </dependency>
Clement Escoffier3cc5d2d2009-12-28 12:17:10 +000063
64 <dependency>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>org.apache.felix.eventadmin</artifactId>
67 <version>1.0.0</version>
68 <scope>test</scope>
69 </dependency>
70
Clement Escoffier0f181552009-11-29 10:06:36 +000071 </dependencies>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000072
Clement Escoffier0f181552009-11-29 10:06:36 +000073 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-compiler-plugin</artifactId>
78 <configuration>
79 <source>1.5</source>
80 <target>1.5</target>
81 </configuration>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 <version>1.4.3</version>
87 <extensions>true</extensions>
88 <configuration>
89 <instructions>
90 <Export-Package>
91 org.apache.felix.ipojo.test.scenarios.annotations.service
92 </Export-Package>
93 <Bundle-SymbolicName>
94 ${pom.artifactId}
95 </Bundle-SymbolicName>
96 <Private-Package>
97 org.apache.felix.ipojo.test*
98 </Private-Package>
99 <Test-Suite>
100 org.apache.felix.ipojo.test.scenarios.annotations.AnnotationsTestSuite
101 </Test-Suite>
102 </instructions>
103 </configuration>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.felix</groupId>
107 <artifactId>maven-ipojo-plugin</artifactId>
108 <version>${pom.version}</version>
109 <executions>
110 <execution>
111 <goals>
112 <goal>ipojo-bundle</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
Clement Escoffier3cc5d2d2009-12-28 12:17:10 +0000117
118
Clement Escoffier1d6dc4e2010-02-24 18:15:44 +0000119 <plugin>
Clement Escoffier3cc5d2d2009-12-28 12:17:10 +0000120 <groupId>org.apache.felix</groupId>
121 <artifactId>maven-junit4osgi-plugin</artifactId>
122 <version>1.1.0-SNAPSHOT</version>
123 <executions>
124 <execution>
125 <goals>
126 <goal>test</goal>
127 </goals>
128 <configuration>
129 <configuration>
130 <org.osgi.http.port>8083</org.osgi.http.port>
131 </configuration>
132 </configuration>
133 </execution>
134 </executions>
Clement Escoffier1d6dc4e2010-02-24 18:15:44 +0000135 </plugin>
Clement Escoffier0f181552009-11-29 10:06:36 +0000136 </plugins>
137 </build>
Clement Escoffiercdb4b172008-04-29 22:25:39 +0000138</project>