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> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 4 | |
| 5 | <parent> |
Clement Escoffier | 513ce45 | 2011-02-23 13:35:32 +0000 | [diff] [blame^] | 6 | <groupId>ipojo.tests</groupId> |
| 7 | <artifactId>ipojo.tests</artifactId> |
| 8 | <version>1.5.0-SNAPSHOT</version> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 9 | </parent> |
| 10 | |
Clement Escoffier | 821ad05 | 2009-04-22 10:08:45 +0000 | [diff] [blame] | 11 | <groupId>org.apache.felix</groupId> |
| 12 | <artifactId>org.apache.felix.ipojo.online.manipulator.test</artifactId> |
Clement Escoffier | 513ce45 | 2011-02-23 13:35:32 +0000 | [diff] [blame^] | 13 | <version>1.7.0-SNAPSHOT</version> |
Clement Escoffier | 821ad05 | 2009-04-22 10:08:45 +0000 | [diff] [blame] | 14 | <name>Online Manipulator Test</name> |
| 15 | <packaging>jar</packaging> |
| 16 | <build> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 17 | <plugins> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.maven.plugins</groupId> |
| 20 | <artifactId>maven-compiler-plugin</artifactId> |
| 21 | <configuration> |
| 22 | <source>1.5</source> |
| 23 | <target>1.5</target> |
| 24 | </configuration> |
| 25 | </plugin> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.servicemix.tooling</groupId> |
| 28 | <artifactId>depends-maven-plugin</artifactId> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 29 | <version>1.2</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 30 | <executions> |
| 31 | <execution> |
| 32 | <id>generate-depends-file</id> |
| 33 | <goals> |
| 34 | <goal>generate-depends-file</goal> |
| 35 | </goals> |
| 36 | </execution> |
| 37 | </executions> |
| 38 | </plugin> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 39 | </plugins> |
| 40 | </build> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 41 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 42 | <dependencies> |
Clement Escoffier | 513ce45 | 2011-02-23 13:35:32 +0000 | [diff] [blame^] | 43 | <dependency> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 44 | <groupId>org.osgi</groupId> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 45 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 46 | </dependency> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 47 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 48 | <!-- |
| 49 | Pax Exam API: |
| 50 | --> |
| 51 | <dependency> |
| 52 | <groupId>org.ops4j.pax.exam</groupId> |
| 53 | <artifactId>pax-exam</artifactId> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 54 | <version>1.2.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 55 | </dependency> |
| 56 | <!-- |
| 57 | During runtime Pax Exam will discover the OSGi container to use by |
| 58 | searching metadata available into classpath. Pax Exam comes with a |
| 59 | default container that uses [Pax Runner] for implementing the |
| 60 | container requirements: |
| 61 | --> |
| 62 | <dependency> |
| 63 | <groupId>org.ops4j.pax.exam</groupId> |
| 64 | <artifactId>pax-exam-container-default |
| 65 | </artifactId> |
Clement Escoffier | 03e1db7 | 2010-05-01 10:21:51 +0000 | [diff] [blame] | 66 | <version>1.2.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 67 | </dependency> |
| 68 | <!-- |
| 69 | If your test code is based on JUnit you will have to have the Junit |
| 70 | support artifact: |
| 71 | --> |
Clement Escoffier | 513ce45 | 2011-02-23 13:35:32 +0000 | [diff] [blame^] | 72 | <dependency> |
| 73 | <groupId>org.ops4j.pax.exam</groupId> |
| 74 | <artifactId>pax-exam-junit</artifactId> |
| 75 | <version>1.2.0</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>junit</groupId> |
| 79 | <artifactId>junit</artifactId> |
| 80 | <version>4.5</version> |
| 81 | <type>jar</type> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 84 | |
Clement Escoffier | 513ce45 | 2011-02-23 13:35:32 +0000 | [diff] [blame^] | 85 | <dependency> |
| 86 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 87 | <artifactId>pax-swissbox-tinybundles</artifactId> |
| 88 | <version>1.2.0</version> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>xerces</groupId> |
| 92 | <artifactId>xercesImpl</artifactId> |
| 93 | <version>2.4.0</version> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>org.apache.felix</groupId> |
| 97 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.apache.felix</groupId> |
| 101 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.apache.felix</groupId> |
| 105 | <artifactId>org.apache.felix.ipojo.online.manipulator</artifactId> |
| 106 | <version>1.7.0-SNAPSHOT</version> |
| 107 | </dependency> |
Clement Escoffier | 3457169 | 2009-06-28 13:44:55 +0000 | [diff] [blame] | 108 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 109 | </dependencies> |
Clement Escoffier | 821ad05 | 2009-04-22 10:08:45 +0000 | [diff] [blame] | 110 | </project> |