Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <groupId>ipojo.tests</groupId> |
| 4 | <artifactId>tests.core.handler</artifactId> |
| 5 | <name>iPOJO Handler Mechanism Test Suite</name> |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 6 | <version>1.5.0-SNAPSHOT</version> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 7 | <description>Test the handler mechanism</description> |
| 8 | |
| 9 | <build> |
| 10 | <plugins> |
| 11 | <plugin> |
| 12 | <groupId>org.apache.maven.plugins</groupId> |
| 13 | <artifactId>maven-compiler-plugin</artifactId> |
| 14 | <configuration> |
| 15 | <source>1.5</source> |
| 16 | <target>1.5</target> |
| 17 | </configuration> |
| 18 | </plugin> |
| 19 | <plugin> |
| 20 | <groupId>org.apache.servicemix.tooling</groupId> |
| 21 | <artifactId>depends-maven-plugin</artifactId> |
| 22 | <executions> |
| 23 | <execution> |
| 24 | <id>generate-depends-file</id> |
| 25 | <goals> |
| 26 | <goal>generate-depends-file</goal> |
| 27 | </goals> |
| 28 | </execution> |
| 29 | </executions> |
| 30 | </plugin> |
| 31 | |
| 32 | <!-- <plugin> |
| 33 | <groupId>org.ops4j.pax.exam</groupId> |
| 34 | <artifactId>maven-paxexam-plugin</artifactId> |
| 35 | <executions> |
| 36 | <execution> |
| 37 | <id>generate-paxexam-config</id> |
| 38 | <goals> |
| 39 | <goal>generate-paxexam-config</goal> |
| 40 | </goals> |
| 41 | </execution> |
| 42 | </executions> |
| 43 | <configuration> |
| 44 | <settings> |
| 45 | <platform>felix</platform> |
| 46 | </settings> |
| 47 | </configuration> |
| 48 | </plugin> --> |
| 49 | </plugins> |
| 50 | </build> |
| 51 | |
| 52 | <dependencies> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 56 | <version>${pom.version}</version> |
| 57 | </dependency> |
| 58 | |
| 59 | <!-- |
| 60 | Pax Exam API: |
| 61 | --> |
| 62 | <dependency> |
| 63 | <groupId>org.ops4j.pax.exam</groupId> |
| 64 | <artifactId>pax-exam</artifactId> |
Clement Escoffier | 2252e95 | 2009-09-01 17:54:57 +0000 | [diff] [blame] | 65 | <version>1.1.0</version> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 66 | </dependency> |
| 67 | <!-- |
| 68 | During runtime Pax Exam will discover the OSGi container to use by |
| 69 | searching metadata available into classpath. Pax Exam comes with a |
| 70 | default container that uses [Pax Runner] for implementing the |
| 71 | container requirements: |
| 72 | --> |
| 73 | <dependency> |
| 74 | <groupId>org.ops4j.pax.exam</groupId> |
| 75 | <artifactId>pax-exam-container-default |
| 76 | </artifactId> |
Clement Escoffier | 2252e95 | 2009-09-01 17:54:57 +0000 | [diff] [blame] | 77 | <version>1.1.0</version> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 78 | </dependency> |
| 79 | <!-- |
| 80 | If your test code is based on JUnit you will have to have the Junit |
| 81 | support artifact: |
| 82 | --> |
| 83 | <dependency> |
| 84 | <groupId>org.ops4j.pax.exam</groupId> |
| 85 | <artifactId>pax-exam-junit</artifactId> |
Clement Escoffier | 2252e95 | 2009-09-01 17:54:57 +0000 | [diff] [blame] | 86 | <version>1.1.0</version> |
Clement Escoffier | ca9ad34 | 2009-07-12 08:11:01 +0000 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>junit</groupId> |
| 90 | <artifactId>junit</artifactId> |
| 91 | <version>4.5</version> |
| 92 | <type>jar</type> |
| 93 | <scope>test</scope> |
| 94 | </dependency> |
| 95 | <!-- Tinybundles --> |
| 96 | <dependency> |
| 97 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 98 | <artifactId>pax-swissbox-tinybundles</artifactId> |
| 99 | <version>1.0.0</version> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.apache.felix</groupId> |
| 103 | <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO</artifactId> |
| 104 | <version>${pom.version}</version> |
| 105 | </dependency> |
| 106 | </dependencies> |
| 107 | |
| 108 | <repositories> |
| 109 | <repository> |
| 110 | <id>ops4j.releases</id> |
| 111 | <name>OPS4J Release</name> |
| 112 | <url> http://repository.ops4j.org/maven2/</url> |
| 113 | <releases> |
| 114 | <enabled>true</enabled> |
| 115 | </releases> |
| 116 | <snapshots> |
| 117 | <enabled>false</enabled> |
| 118 | </snapshots> |
| 119 | </repository> |
| 120 | </repositories> |
| 121 | |
| 122 | </project> |