Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 2 | <!--
|
Clement Escoffier | 3012052 | 2010-05-16 16:15:12 +0000 | [diff] [blame^] | 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
|
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 10 |
|
Clement Escoffier | 3012052 | 2010-05-16 16:15:12 +0000 | [diff] [blame^] | 11 | http://www.apache.org/licenses/LICENSE-2.0
|
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 12 |
|
Clement Escoffier | 3012052 | 2010-05-16 16:15:12 +0000 | [diff] [blame^] | 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.
|
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 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">
|
Clement Escoffier | 3012052 | 2010-05-16 16:15:12 +0000 | [diff] [blame^] | 22 | <parent>
|
| 23 | <groupId>ipojo.tests</groupId>
|
| 24 | <artifactId>ipojo.tests</artifactId>
|
| 25 | <version>1.5.0-SNAPSHOT</version>
|
| 26 | </parent>
|
| 27 | <groupId>ipojo.tests</groupId>
|
| 28 | <version>1.5.0-SNAPSHOT</version>
|
| 29 | <modelVersion>4.0.0</modelVersion>
|
| 30 | <packaging>bundle</packaging>
|
| 31 | <name>iPOJO Event Admin Handler Test Suite</name>
|
| 32 | <artifactId>tests.eventadmin.handler</artifactId>
|
| 33 | <dependencies>
|
| 34 | <dependency>
|
| 35 | <groupId>org.apache.felix</groupId>
|
| 36 | <artifactId>org.apache.felix.ipojo</artifactId>
|
| 37 | <version>1.7.0-SNAPSHOT</version>
|
| 38 | </dependency>
|
| 39 | <dependency>
|
| 40 | <groupId>org.osgi</groupId>
|
| 41 | <artifactId>org.osgi.core</artifactId>
|
| 42 | </dependency>
|
| 43 | <dependency>
|
| 44 | <groupId>org.apache.felix</groupId>
|
| 45 | <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
|
| 46 | <version>1.7.0-SNAPSHOT</version>
|
| 47 | </dependency>
|
| 48 | <dependency>
|
| 49 | <groupId>junit</groupId>
|
| 50 | <artifactId>junit</artifactId>
|
| 51 | <version>3.8.1</version>
|
| 52 | </dependency>
|
| 53 | <dependency>
|
| 54 | <groupId>org.apache.felix</groupId>
|
| 55 | <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
|
| 56 | <version>1.1.0-SNAPSHOT</version>
|
| 57 | </dependency>
|
| 58 | <dependency>
|
| 59 | <groupId>org.osgi</groupId>
|
| 60 | <artifactId>org.osgi.compendium</artifactId>
|
| 61 | <version>4.0.0</version>
|
| 62 | </dependency>
|
| 63 | </dependencies>
|
| 64 | <build>
|
| 65 | <plugins>
|
| 66 | <plugin>
|
| 67 | <groupId>org.apache.felix</groupId>
|
| 68 | <artifactId>maven-bundle-plugin</artifactId>
|
| 69 | <extensions>true</extensions>
|
| 70 | <configuration>
|
| 71 | <instructions>
|
| 72 | <Private-Package>org.apache.felix.ipojo.test.*
|
| 73 | </Private-Package>
|
| 74 | <Test-Suite>
|
| 75 | org.apache.felix.ipojo.test.EahTestSuite
|
| 76 | </Test-Suite>
|
| 77 | </instructions>
|
| 78 | </configuration>
|
| 79 | </plugin>
|
| 80 | <plugin>
|
| 81 | <groupId>org.apache.felix</groupId>
|
| 82 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 83 | <executions>
|
| 84 | <execution>
|
| 85 | <goals>
|
| 86 | <goal>ipojo-bundle</goal>
|
| 87 | </goals>
|
| 88 | <configuration>
|
| 89 | <ignoreAnnotations>true</ignoreAnnotations>
|
| 90 | </configuration>
|
| 91 | </execution>
|
| 92 | </executions>
|
| 93 | </plugin>
|
| 94 | </plugins>
|
| 95 | </build>
|
Clement Escoffier | dfce6b3 | 2008-07-30 18:05:29 +0000 | [diff] [blame] | 96 | </project>
|