Clement Escoffier | 821ad05 | 2009-04-22 10:08:45 +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>org.apache.felix</groupId> |
| 5 | <artifactId>org.apache.felix.ipojo.online.manipulator.test</artifactId> |
Clement Escoffier | af9ad1b | 2009-08-14 12:11:19 +0000 | [diff] [blame] | 6 | <version>1.5.0-SNAPSHOT</version> |
Clement Escoffier | 821ad05 | 2009-04-22 10:08:45 +0000 | [diff] [blame] | 7 | <name>Online Manipulator Test</name> |
| 8 | <packaging>jar</packaging> |
| 9 | <build> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 31 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 32 | <!-- |
| 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 | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>org.apache.felix</groupId> |
| 56 | <artifactId>org.osgi.core</artifactId> |
| 57 | <version>1.2.0</version> |
| 58 | </dependency> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 59 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 60 | <!-- |
| 61 | Pax Exam API: |
| 62 | --> |
| 63 | <dependency> |
| 64 | <groupId>org.ops4j.pax.exam</groupId> |
| 65 | <artifactId>pax-exam</artifactId> |
Clement Escoffier | 2252e95 | 2009-09-01 17:54:57 +0000 | [diff] [blame] | 66 | <version>1.1.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 67 | </dependency> |
| 68 | <!-- |
| 69 | During runtime Pax Exam will discover the OSGi container to use by |
| 70 | searching metadata available into classpath. Pax Exam comes with a |
| 71 | default container that uses [Pax Runner] for implementing the |
| 72 | container requirements: |
| 73 | --> |
| 74 | <dependency> |
| 75 | <groupId>org.ops4j.pax.exam</groupId> |
| 76 | <artifactId>pax-exam-container-default |
| 77 | </artifactId> |
Clement Escoffier | 2252e95 | 2009-09-01 17:54:57 +0000 | [diff] [blame] | 78 | <version>1.1.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 79 | </dependency> |
| 80 | <!-- |
| 81 | If your test code is based on JUnit you will have to have the Junit |
| 82 | support artifact: |
| 83 | --> |
| 84 | <dependency> |
| 85 | <groupId>org.ops4j.pax.exam</groupId> |
| 86 | <artifactId>pax-exam-junit</artifactId> |
Clement Escoffier | 2252e95 | 2009-09-01 17:54:57 +0000 | [diff] [blame] | 87 | <version>1.1.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>junit</groupId> |
| 91 | <artifactId>junit</artifactId> |
| 92 | <version>4.5</version> |
| 93 | <type>jar</type> |
| 94 | <scope>test</scope> |
| 95 | </dependency> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 96 | |
| 97 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 98 | <!-- TinyBundle --> |
| 99 | <dependency> |
| 100 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 101 | <artifactId>pax-swissbox-tinybundles</artifactId> |
| 102 | <version>1.0.0</version> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.felix</groupId> |
| 106 | <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO</artifactId> |
| 107 | <version>${pom.version}</version> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>xerces</groupId> |
| 111 | <artifactId>xercesImpl</artifactId> |
| 112 | <version>2.4.0</version> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.apache.felix</groupId> |
| 116 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 117 | <version>${pom.version}</version> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.apache.felix</groupId> |
| 121 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 122 | <version>${pom.version}</version> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.apache.felix</groupId> |
| 126 | <artifactId>org.apache.felix.ipojo.online.manipulator</artifactId> |
| 127 | <version>${pom.version}</version> |
| 128 | </dependency> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 129 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 130 | </dependencies> |
Clement Escoffier | 821ad05 | 2009-04-22 10:08:45 +0000 | [diff] [blame] | 131 | </project> |