Clement Escoffier | 2475aee | 2009-11-07 08:56:40 +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.inheritance</artifactId> |
| 5 | <name>iPOJO Service Providing with inheritance Test Suite</name> |
| 6 | <version>1.5.0-SNAPSHOT</version> |
| 7 | <description>The the service providing with inheritance</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> |
Clement Escoffier | 5ab0b44 | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 58 | <dependency> |
| 59 | <groupId>org.osgi</groupId> |
| 60 | <artifactId>org.osgi.core</artifactId> |
| 61 | <version>4.2.0</version> |
| 62 | </dependency> |
Clement Escoffier | 2475aee | 2009-11-07 08:56:40 +0000 | [diff] [blame] | 63 | |
Clement Escoffier | f6e8caf | 2010-02-20 10:50:50 +0000 | [diff] [blame] | 64 | <!-- Pax Exam API: --> |
| 65 | <dependency> |
| 66 | <groupId>org.ops4j.pax.exam</groupId> |
| 67 | <artifactId>pax-exam</artifactId> |
| 68 | <version>1.2.0</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <!-- |
| 72 | During runtime Pax Exam will discover the OSGi container to use by |
| 73 | searching metadata available into classpath. Pax Exam comes with a |
| 74 | default container that uses [Pax Runner] for implementing the |
| 75 | container requirements: |
| 76 | --> |
| 77 | <dependency> |
| 78 | <groupId>org.ops4j.pax.exam</groupId> |
| 79 | <artifactId>pax-exam-container-default |
| 80 | </artifactId> |
| 81 | <version>1.2.0</version> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
| 84 | <!-- |
| 85 | If your test code is based on JUnit you will have to have the Junit |
| 86 | support artifact: |
| 87 | --> |
| 88 | <dependency> |
| 89 | <groupId>org.ops4j.pax.exam</groupId> |
| 90 | <artifactId>pax-exam-junit</artifactId> |
| 91 | <version>1.2.0</version> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>junit</groupId> |
| 96 | <artifactId>junit</artifactId> |
| 97 | <version>4.5</version> |
| 98 | <type>jar</type> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | |
| 102 | <!-- TinyBundle --> |
| 103 | <dependency> |
| 104 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 105 | <artifactId>pax-swissbox-tinybundles</artifactId> |
| 106 | <version>1.2.0</version> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.ops4j.base</groupId> |
| 111 | <artifactId>ops4j-base</artifactId> |
| 112 | <version>1.2.0</version> |
| 113 | <scope>test</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.ops4j.pax.swissbox</groupId> |
| 117 | <artifactId>pax-swissbox-bnd</artifactId> |
| 118 | <version>1.2.0</version> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
| 121 | |
| 122 | <!-- mockito --> |
| 123 | <dependency> |
| 124 | <groupId>org.mockito</groupId> |
| 125 | <artifactId>mockito-all</artifactId> |
| 126 | <version>1.7</version> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | |
| 130 | <dependency> |
| 131 | <groupId>org.apache.felix</groupId> |
| 132 | <artifactId>org.apache.felix.ipojo.tinybundles.bundleAsiPOJO |
| 133 | </artifactId> |
| 134 | <version>1.5.0-SNAPSHOT</version> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.apache.felix</groupId> |
| 139 | <artifactId>org.apache.felix.ipojo.test.helpers</artifactId> |
| 140 | <version>1.5.0-SNAPSHOT</version> |
| 141 | <scope>test</scope> |
| 142 | </dependency> |
| 143 | |
Clement Escoffier | 2475aee | 2009-11-07 08:56:40 +0000 | [diff] [blame] | 144 | <dependency> |
| 145 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | f6e8caf | 2010-02-20 10:50:50 +0000 | [diff] [blame] | 146 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 147 | <version>1.5.0-SNAPSHOT</version> |
| 148 | <scope>compile</scope> |
Clement Escoffier | 2475aee | 2009-11-07 08:56:40 +0000 | [diff] [blame] | 149 | </dependency> |
| 150 | </dependencies> |
| 151 | |
| 152 | <repositories> |
| 153 | <repository> |
| 154 | <id>ops4j.releases</id> |
| 155 | <name>OPS4J Release</name> |
| 156 | <url> http://repository.ops4j.org/maven2/</url> |
| 157 | <releases> |
| 158 | <enabled>true</enabled> |
| 159 | </releases> |
| 160 | <snapshots> |
| 161 | <enabled>false</enabled> |
| 162 | </snapshots> |
| 163 | </repository> |
| 164 | </repositories> |
| 165 | |
| 166 | </project> |