Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 1 | <!--
|
| 2 | 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 Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 9 |
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0
|
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 11 |
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 12 | 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.
|
| 18 | -->
|
| 19 | <project>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion>
|
| 21 | <packaging>bundle</packaging>
|
Clement Escoffier | ad6c555 | 2008-04-25 16:49:43 +0000 | [diff] [blame] | 22 | <name>iPOJO External Handler Mechanism Test Suite</name>
|
| 23 | <artifactId>tests.core.external.handlers</artifactId>
|
Clement Escoffier | 7d116ff | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 24 | <groupId>ipojo.tests</groupId>
|
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 25 | <version>1.5.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 26 | <dependencies>
|
| 27 | <dependency>
|
| 28 | <groupId>org.apache.felix</groupId>
|
| 29 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 30 | <version>${pom.version}</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 31 | </dependency>
|
| 32 | <dependency>
|
| 33 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 34 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 35 | <version>${pom.version}</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 36 | </dependency>
|
| 37 | <dependency>
|
| 38 | <groupId>org.apache.felix</groupId>
|
| 39 | <artifactId>org.osgi.core</artifactId>
|
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 40 | <version>1.0.1</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 41 | </dependency>
|
| 42 | <dependency>
|
| 43 | <groupId>junit</groupId>
|
| 44 | <artifactId>junit</artifactId>
|
| 45 | <version>3.8.1</version>
|
| 46 | </dependency>
|
| 47 | <dependency>
|
Clement Escoffier | 18bfd02 | 2008-12-01 19:42:13 +0000 | [diff] [blame] | 48 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 49 | <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
|
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 50 | <version>1.1.0-SNAPSHOT</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 51 | </dependency>
|
| 52 | </dependencies>
|
| 53 | <build>
|
| 54 | <plugins>
|
| 55 | <plugin>
|
| 56 | <groupId>org.apache.felix</groupId>
|
| 57 | <artifactId>maven-bundle-plugin</artifactId>
|
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 58 | <version>1.4.3</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 59 | <extensions>true</extensions>
|
| 60 | <configuration>
|
| 61 | <instructions>
|
| 62 | <Export-Package>
|
Clement Escoffier | ad6c555 | 2008-04-25 16:49:43 +0000 | [diff] [blame] | 63 | org.apache.felix.ipojo.test.scenarios.eh.service
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 64 | </Export-Package>
|
| 65 | <Bundle-SymbolicName>
|
| 66 | ${pom.artifactId}
|
| 67 | </Bundle-SymbolicName>
|
| 68 | <Private-Package>
|
| 69 | org.apache.felix.ipojo.test*
|
| 70 | </Private-Package>
|
| 71 | <Test-Suite>
|
Clement Escoffier | ad6c555 | 2008-04-25 16:49:43 +0000 | [diff] [blame] | 72 | org.apache.felix.ipojo.test.scenarios.eh.ExternalHandlerTestSuite
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 73 | </Test-Suite>
|
| 74 | </instructions>
|
| 75 | </configuration>
|
| 76 | </plugin>
|
| 77 | <plugin>
|
| 78 | <groupId>org.apache.felix</groupId>
|
| 79 | <artifactId>maven-ipojo-plugin</artifactId>
|
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 80 | <version>${pom.version}</version>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 81 | <executions>
|
| 82 | <execution>
|
| 83 | <goals>
|
| 84 | <goal>ipojo-bundle</goal>
|
| 85 | </goals>
|
| 86 | <configuration>
|
| 87 | <ignoreAnnotations>true</ignoreAnnotations>
|
| 88 | </configuration>
|
| 89 | </execution>
|
| 90 | </executions>
|
| 91 | </plugin>
|
| 92 | <plugin>
|
| 93 | <groupId>org.apache.maven.plugins</groupId>
|
| 94 | <artifactId>maven-compiler-plugin</artifactId>
|
| 95 | <configuration>
|
Clement Escoffier | ad6c555 | 2008-04-25 16:49:43 +0000 | [diff] [blame] | 96 | <source>1.4</source>
|
| 97 | <target>1.4</target>
|
Clement Escoffier | ce0e1e5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 98 | </configuration>
|
| 99 | </plugin>
|
| 100 | </plugins>
|
| 101 | </build>
|
| 102 | </project>
|