Clement Escoffier | 057f158 | 2012-04-21 11:03:41 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +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 | 057f158 | 2012-04-21 11:03:41 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | 057f158 | 2012-04-21 11:03:41 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +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 | 057f158 | 2012-04-21 11:03:41 +0000 | [diff] [blame] | 18 | --> |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>ipojo.tests</groupId> |
| 23 | <artifactId>ipojo.tests</artifactId> |
| 24 | <version>1.5.0-SNAPSHOT</version> |
| 25 | <relativePath>../../pom.xml</relativePath> |
| 26 | </parent> |
Clement Escoffier | 057f158 | 2012-04-21 11:03:41 +0000 | [diff] [blame] | 27 | |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <packaging>bundle</packaging> |
| 30 | <name>iPOJO Bad Configurations Test Suite</name> |
| 31 | <artifactId>tests.core.bad.configurations</artifactId> |
| 32 | <groupId>ipojo.tests</groupId> |
| 33 | <version>${ipojo.core.snapshot}</version> |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 057f158 | 2012-04-21 11:03:41 +0000 | [diff] [blame] | 38 | <version>${ipojo.core.snapshot}</version> |
Clement Escoffier | 8768456 | 2011-08-18 11:36:08 +0000 | [diff] [blame] | 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.osgi</groupId> |
| 46 | <artifactId>org.osgi.compendium</artifactId> |
| 47 | <version>4.0.0</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.osgi</groupId> |
| 51 | <artifactId>org.osgi.core</artifactId> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>junit</groupId> |
| 55 | <artifactId>junit</artifactId> |
| 56 | <version>3.8.1</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>org.apache.felix.ipojo.junit4osgi</artifactId> |
| 61 | <version>1.1.0-SNAPSHOT</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 | <Export-Package> |
| 73 | org.apache.felix.ipojo.test.scenarios.bad.service |
| 74 | </Export-Package> |
| 75 | <Bundle-SymbolicName> |
| 76 | ${project.artifactId} |
| 77 | </Bundle-SymbolicName> |
| 78 | <Private-Package> |
| 79 | org.apache.felix.ipojo.test* |
| 80 | </Private-Package> |
| 81 | <Test-Suite> |
| 82 | org.apache.felix.ipojo.test.scenarios.bad.BadTestSuite |
| 83 | </Test-Suite> |
| 84 | </instructions> |
| 85 | </configuration> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.felix</groupId> |
| 89 | <artifactId>maven-ipojo-plugin</artifactId> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <goals> |
| 93 | <goal>ipojo-bundle</goal> |
| 94 | </goals> |
| 95 | <configuration> |
| 96 | <ignoreAnnotations>true</ignoreAnnotations> |
| 97 | </configuration> |
| 98 | </execution> |
| 99 | </executions> |
| 100 | </plugin> |
| 101 | <plugin> |
| 102 | <groupId>org.apache.maven.plugins</groupId> |
| 103 | <artifactId>maven-compiler-plugin</artifactId> |
| 104 | <configuration> |
| 105 | <source>1.4</source> |
| 106 | <target>1.4</target> |
| 107 | </configuration> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | </build> |
Clement Escoffier | 057f158 | 2012-04-21 11:03:41 +0000 | [diff] [blame] | 111 | </project> |