blob: 5b27d460c1ccaaf29279b309a23335384bedbfc7 [file] [log] [blame]
Clement Escoffier105b5ff2010-10-16 08:55:49 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
20<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22 <parent>
23 <groupId>ipojo.tests</groupId>
24 <artifactId>ipojo.tests</artifactId>
25 <version>1.5.0-SNAPSHOT</version>
Clement Escoffier95358cb2011-08-18 11:36:08 +000026 <relativePath>../../pom.xml</relativePath>
Clement Escoffier105b5ff2010-10-16 08:55:49 +000027 </parent>
28 <groupId>ipojo.tests</groupId>
29 <version>1.5.0-SNAPSHOT</version>
30 <modelVersion>4.0.0</modelVersion>
31 <packaging>bundle</packaging>
32 <name>iPOJO JMX Handler Test Suite</name>
33 <artifactId>tests.jmx.handler</artifactId>
34
Clement Escoffier95358cb2011-08-18 11:36:08 +000035 <dependencies>
Clement Escoffier105b5ff2010-10-16 08:55:49 +000036 <dependency>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
Clement Escoffier105b5ff2010-10-16 08:55:49 +000039 </dependency>
Clement Escoffier95358cb2011-08-18 11:36:08 +000040 <dependency>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>org.apache.felix.ipojo</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo.handler.jmx</artifactId>
51 <version>1.5.0-SNAPSHOT</version>
52 </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 <dependency>
64 <groupId>org.osgi</groupId>
65 <artifactId>org.osgi.compendium</artifactId>
66 </dependency>
67 </dependencies>
Clement Escoffier105b5ff2010-10-16 08:55:49 +000068 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-compiler-plugin</artifactId>
73 <configuration>
74 <source>1.5</source>
75 <target>1.5</target>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 <extensions>true</extensions>
82 <configuration>
83 <instructions>
84 <Private-Package>org.apache.felix.ipojo.test.*
85 </Private-Package>
86 <Test-Suite>
87 org.apache.felix.ipojo.test.JmxTestSuite
88 </Test-Suite>
89 </instructions>
90 </configuration>
91 </plugin>
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-ipojo-plugin</artifactId>
95 <executions>
96 <execution>
97 <goals>
98 <goal>ipojo-bundle</goal>
99 </goals>
100 <configuration>
101 <ignoreAnnotations>false</ignoreAnnotations>
102 </configuration>
103 </execution>
104 </executions>
105 </plugin>
106 <plugin>
Clement Escoffier95358cb2011-08-18 11:36:08 +0000107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-junit4osgi-plugin
109 </artifactId>
110 <version>1.1.0-SNAPSHOT</version>
111 <executions>
112 <execution>
113 <goals>
114 <goal>test</goal>
115 </goals>
116 <configuration>
117 <hideOutputs>false</hideOutputs>
118 <logService>false</logService>
119 <configuration>
120 <org.osgi.http.port>8083</org.osgi.http.port>
121 </configuration>
122 </configuration>
123 </execution>
124 </executions>
125 </plugin>
Clement Escoffier105b5ff2010-10-16 08:55:49 +0000126 </plugins>
127 </build>
128</project>