|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>iwein.samples</groupId> |
| 7 | + <artifactId>task-autowiring</artifactId> |
| 8 | + <packaging>jar</packaging> |
| 9 | + <version>1.0-SNAPSHOT</version> |
| 10 | + <properties> |
| 11 | + <spring.framework.version>3.0.3.RELEASE</spring.framework.version> |
| 12 | + <spring.integration.version>2.0.0.M5</spring.integration.version> |
| 13 | + <junit.version>4.7</junit.version> |
| 14 | + <mockito.version>1.8.5</mockito.version> |
| 15 | + </properties> |
| 16 | + <dependencies> |
| 17 | + <dependency> |
| 18 | + <groupId>org.springframework</groupId> |
| 19 | + <artifactId>spring-core</artifactId> |
| 20 | + <version>${spring.framework.version}</version> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>org.springframework</groupId> |
| 24 | + <artifactId>spring-web</artifactId> |
| 25 | + <version>${spring.framework.version}</version> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>org.springframework</groupId> |
| 29 | + <artifactId>spring-context</artifactId> |
| 30 | + <version>${spring.framework.version}</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.springframework</groupId> |
| 34 | + <artifactId>spring-tx</artifactId> |
| 35 | + <version>${spring.framework.version}</version> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework</groupId> |
| 39 | + <artifactId>spring-aop</artifactId> |
| 40 | + <version>${spring.framework.version}</version> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework</groupId> |
| 44 | + <artifactId>spring-test</artifactId> |
| 45 | + <version>${spring.framework.version}</version> |
| 46 | + <scope>test</scope> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>junit</groupId> |
| 50 | + <artifactId>junit</artifactId> |
| 51 | + <version>${junit.version}</version> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.mockito</groupId> |
| 55 | + <artifactId>mockito-all</artifactId> |
| 56 | + <version>${mockito.version}</version> |
| 57 | + </dependency> |
| 58 | + </dependencies> |
| 59 | + <name>task-autowiring</name> |
| 60 | + <url>http://maven.apache.org</url> |
| 61 | +</project> |
0 commit comments