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