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
|
| 9 |
|
| 10 | http://www.apache.org/licenses/LICENSE-2.0
|
| 11 |
|
| 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>
|
| 20 | <parent>
|
| 21 | <groupId>ipojo.examples</groupId>
|
| 22 | <artifactId>Junit4Osgi</artifactId>
|
| 23 | <version>0.7.6-SNAPSHOT</version>
|
| 24 | <relativePath>../pom.xml</relativePath>
|
| 25 | </parent>
|
| 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <packaging>bundle</packaging>
|
| 28 | <name>Junit4Osgi-Immediate-Runner</name>
|
| 29 | <artifactId>
|
| 30 | org.apache.felix.ipojo.junit4osgi.immediate-runner
|
| 31 | </artifactId>
|
| 32 | <dependencies>
|
| 33 | <dependency>
|
| 34 | <groupId>${pom.groupId}</groupId>
|
| 35 | <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId>
|
| 36 | <version>${pom.version}</version>
|
| 37 | </dependency>
|
| 38 | <dependency>
|
| 39 | <groupId>org.apache.felix</groupId>
|
| 40 | <artifactId>org.apache.felix.shell</artifactId>
|
| 41 | <version>1.0.0</version>
|
| 42 | </dependency>
|
| 43 | <dependency>
|
| 44 | <groupId>junit</groupId>
|
| 45 | <artifactId>junit</artifactId>
|
| 46 | <version>3.8.1</version>
|
| 47 | </dependency>
|
| 48 | </dependencies>
|
| 49 | <build>
|
| 50 | <plugins>
|
| 51 | <plugin>
|
| 52 | <groupId>org.apache.maven.plugins</groupId>
|
| 53 | <artifactId>maven-compiler-plugin</artifactId>
|
| 54 | <configuration>
|
| 55 | <source>1.5</source>
|
| 56 | <target>1.5</target>
|
| 57 | </configuration>
|
| 58 | </plugin>
|
| 59 | <plugin>
|
| 60 | <groupId>org.apache.felix</groupId>
|
| 61 | <artifactId>maven-bundle-plugin</artifactId>
|
| 62 | <version>1.4.0</version>
|
| 63 | <extensions>true</extensions>
|
| 64 | <configuration>
|
| 65 | <instructions>
|
| 66 | <Bundle-Name>
|
| 67 | iPOJO OSGi Junit Runner - Immediate Runner
|
| 68 | </Bundle-Name>
|
| 69 | <Bundle-SymbolicName>
|
| 70 | ${pom.artifactId}
|
| 71 | </Bundle-SymbolicName>
|
| 72 | <Private-Package>
|
| 73 | org.apache.felix.ipojo.junit4osgi.command
|
| 74 | </Private-Package>
|
| 75 | </instructions>
|
| 76 | </configuration>
|
| 77 | </plugin>
|
| 78 | <plugin>
|
| 79 | <groupId>org.apache.felix</groupId>
|
| 80 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 81 | <version>${pom.version}</version>
|
| 82 | <executions>
|
| 83 | <execution>
|
| 84 | <goals>
|
| 85 | <goal>ipojo-bundle</goal>
|
| 86 | </goals>
|
| 87 | <configuration>
|
| 88 | <ignoreAnnotations>true</ignoreAnnotations>
|
| 89 | </configuration>
|
| 90 | </execution>
|
| 91 | </executions>
|
| 92 | </plugin>
|
| 93 | </plugins>
|
| 94 | </build>
|
| 95 | </project>
|