Clement Escoffier | cdb4b17 | 2008-04-29 22:25:39 +0000 | [diff] [blame] | 1 | <!--
|
Clement Escoffier | 0f18155 | 2009-11-29 10:06:36 +0000 | [diff] [blame] | 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 | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 9 |
|
Clement Escoffier | 0f18155 | 2009-11-29 10:06:36 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0
|
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 11 |
|
Clement Escoffier | 0f18155 | 2009-11-29 10:06: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.
|
Clement Escoffier | cdb4b17 | 2008-04-29 22:25:39 +0000 | [diff] [blame] | 18 | -->
|
| 19 | <project>
|
Clement Escoffier | 0f18155 | 2009-11-29 10:06:36 +0000 | [diff] [blame] | 20 | <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 Escoffier | 3cc5d2d | 2009-12-28 12:17:10 +0000 | [diff] [blame] | 63 |
|
| 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 Escoffier | 0f18155 | 2009-11-29 10:06:36 +0000 | [diff] [blame] | 71 | </dependencies>
|
Clement Escoffier | c80b73d | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 72 |
|
Clement Escoffier | 0f18155 | 2009-11-29 10:06:36 +0000 | [diff] [blame] | 73 | <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 Escoffier | 3cc5d2d | 2009-12-28 12:17:10 +0000 | [diff] [blame] | 117 |
|
| 118 |
|
Clement Escoffier | 1d6dc4e | 2010-02-24 18:15:44 +0000 | [diff] [blame^] | 119 | <plugin>
|
Clement Escoffier | 3cc5d2d | 2009-12-28 12:17:10 +0000 | [diff] [blame] | 120 | <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 Escoffier | 1d6dc4e | 2010-02-24 18:15:44 +0000 | [diff] [blame^] | 135 | </plugin>
|
Clement Escoffier | 0f18155 | 2009-11-29 10:06:36 +0000 | [diff] [blame] | 136 | </plugins>
|
| 137 | </build>
|
Clement Escoffier | cdb4b17 | 2008-04-29 22:25:39 +0000 | [diff] [blame] | 138 | </project>
|