blob: a01b2891666fb8a160d6393cd35f8bda8eff4fbe [file] [log] [blame]
Clement Escoffier2475aee2009-11-07 08:56:40 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>ipojo.tests</groupId>
4 <artifactId>tests.core.inheritance</artifactId>
5 <name>iPOJO Service Providing with inheritance Test Suite</name>
6 <version>1.5.0-SNAPSHOT</version>
7 <description>The the service providing with inheritance</description>
8
9 <build>
10 <plugins>
11 <plugin>
12 <groupId>org.apache.maven.plugins</groupId>
13 <artifactId>maven-compiler-plugin</artifactId>
14 <configuration>
15 <source>1.5</source>
16 <target>1.5</target>
17 </configuration>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.servicemix.tooling</groupId>
21 <artifactId>depends-maven-plugin</artifactId>
22 <executions>
23 <execution>
24 <id>generate-depends-file</id>
25 <goals>
26 <goal>generate-depends-file</goal>
27 </goals>
28 </execution>
29 </executions>
30 </plugin>
31
32 <!-- <plugin>
33 <groupId>org.ops4j.pax.exam</groupId>
34 <artifactId>maven-paxexam-plugin</artifactId>
35 <executions>
36 <execution>
37 <id>generate-paxexam-config</id>
38 <goals>
39 <goal>generate-paxexam-config</goal>
40 </goals>
41 </execution>
42 </executions>
43 <configuration>
44 <settings>
45 <platform>felix</platform>
46 </settings>
47 </configuration>
48 </plugin> -->
49 </plugins>
50 </build>
51
52 <dependencies>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo</artifactId>
56 <version>${pom.version}</version>
57 </dependency>
58
Clement Escoffierf6e8caf2010-02-20 10:50:50 +000059 <!-- Pax Exam API: -->
60 <dependency>
61 <groupId>org.ops4j.pax.exam</groupId>
62 <artifactId>pax-exam</artifactId>
63 <version>1.2.0</version>
64 <scope>test</scope>
65 </dependency>
66 <!--
67 During runtime Pax Exam will discover the OSGi container to use by
68 searching metadata available into classpath. Pax Exam comes with a
69 default container that uses [Pax Runner] for implementing the
70 container requirements:
71 -->
72 <dependency>
73 <groupId>org.ops4j.pax.exam</groupId>
74 <artifactId>pax-exam-container-default
75 </artifactId>
76 <version>1.2.0</version>
77 <scope>test</scope>
78 </dependency>
79 <!--
80 If your test code is based on JUnit you will have to have the Junit
81 support artifact:
82 -->
83 <dependency>
84 <groupId>org.ops4j.pax.exam</groupId>
85 <artifactId>pax-exam-junit</artifactId>
86 <version>1.2.0</version>
87 <scope>test</scope>
88 </dependency>
89 <dependency>
90 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 <version>4.5</version>
93 <type>jar</type>
94 <scope>test</scope>
95 </dependency>
96
97 <!-- TinyBundle -->
98 <dependency>
99 <groupId>org.ops4j.pax.swissbox</groupId>
100 <artifactId>pax-swissbox-tinybundles</artifactId>
101 <version>1.2.0</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.ops4j.base</groupId>
106 <artifactId>ops4j-base</artifactId>
107 <version>1.2.0</version>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.ops4j.pax.swissbox</groupId>
112 <artifactId>pax-swissbox-bnd</artifactId>
113 <version>1.2.0</version>
114 <scope>test</scope>
115 </dependency>
116
117 <!-- mockito -->
118 <dependency>
119 <groupId>org.mockito</groupId>
120 <artifactId>mockito-all</artifactId>
121 <version>1.7</version>
122 <scope>test</scope>
123 </dependency>
124
125 <dependency>
126 <groupId>org.apache.felix</groupId>
127 <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO
128 </artifactId>
129 <version>1.5.0-SNAPSHOT</version>
130 <scope>test</scope>
131 </dependency>
132 <dependency>
133 <groupId>org.apache.felix</groupId>
134 <artifactId>org.apache.felix.ipojo.test.helpers</artifactId>
135 <version>1.5.0-SNAPSHOT</version>
136 <scope>test</scope>
137 </dependency>
138
Clement Escoffier2475aee2009-11-07 08:56:40 +0000139 <dependency>
140 <groupId>org.apache.felix</groupId>
Clement Escoffierf6e8caf2010-02-20 10:50:50 +0000141 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
142 <version>1.5.0-SNAPSHOT</version>
143 <scope>compile</scope>
Clement Escoffier2475aee2009-11-07 08:56:40 +0000144 </dependency>
145 </dependencies>
146
147 <repositories>
148 <repository>
149 <id>ops4j.releases</id>
150 <name>OPS4J Release</name>
151 <url> http://repository.ops4j.org/maven2/</url>
152 <releases>
153 <enabled>true</enabled>
154 </releases>
155 <snapshots>
156 <enabled>false</enabled>
157 </snapshots>
158 </repository>
159 </repositories>
160
161</project>