Clement Escoffier | 9c22e2d | 2009-04-08 15:14:15 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
| 19 | <project> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>transaction</artifactId> |
| 23 | <version>0.9.0-SNAPSHOT</version> |
| 24 | </parent> |
| 25 | |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <artifactId>org.apache.felix.transaction.itests</artifactId> |
| 28 | <groupId>org.apache.felix</groupId> |
| 29 | <name>Apache Felix Transaction iTests</name> |
| 30 | <version>0.9.0-SNAPSHOT</version> |
| 31 | |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.servicemix.kernel.testing</groupId> |
| 35 | <artifactId>org.apache.servicemix.kernel.testing.support</artifactId> |
| 36 | <version>1.1.0</version> |
| 37 | <scope>test</scope> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>org.apache.felix.transaction</artifactId> |
| 42 | <version>${pom.version}</version> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.springframework</groupId> |
| 47 | <artifactId>spring-tx</artifactId> |
| 48 | <version>2.5.6</version> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | </dependencies> |
| 52 | |
| 53 | <build> |
| 54 | <plugins> |
| 55 | <plugin> |
| 56 | <artifactId>maven-compiler-plugin</artifactId> |
| 57 | <configuration> |
| 58 | <source>1.5</source> |
| 59 | <target>1.5</target> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.servicemix.tooling</groupId> |
| 64 | <artifactId>depends-maven-plugin</artifactId> |
| 65 | <version>1.1</version> |
| 66 | <executions> |
| 67 | <execution> |
| 68 | <id>generate-depends-file</id> |
| 69 | <goals> |
| 70 | <goal>generate-depends-file</goal> |
| 71 | </goals> |
| 72 | </execution> |
| 73 | </executions> |
| 74 | </plugin> |
| 75 | </plugins> |
| 76 | </build> |
| 77 | |
Stuart McCulloch | 4e46b80 | 2009-04-11 18:15:00 +0000 | [diff] [blame] | 78 | <repositories> |
| 79 | <repository> |
| 80 | <id>spring-milestone</id> |
| 81 | <name>Spring Portfolio Milestone Repository</name> |
| 82 | <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url> |
| 83 | <releases> |
| 84 | <enabled>true</enabled> |
| 85 | </releases> |
| 86 | <snapshots> |
| 87 | <enabled>false</enabled> |
| 88 | </snapshots> |
| 89 | </repository> |
| 90 | </repositories> |
| 91 | |
Clement Escoffier | 9c22e2d | 2009-04-08 15:14:15 +0000 | [diff] [blame] | 92 | </project> |