|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>org.springframework.samples.spring</groupId> |
| 7 | + <artifactId>SPR-9566</artifactId> |
| 8 | + <version>1.0.0.CI-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + <name>Spring Utility</name> |
| 11 | + <url>http://www.springframework.org</url> |
| 12 | + <description> |
| 13 | + <![CDATA[ |
| 14 | + This project is a minimal jar utility with Spring configuration. |
| 15 | + ]]> |
| 16 | + </description> |
| 17 | + <properties> |
| 18 | + <maven.test.failure.ignore>true</maven.test.failure.ignore> |
| 19 | + <spring.framework.version>3.2.0.BUILD-SNAPSHOT</spring.framework.version> |
| 20 | + </properties> |
| 21 | + |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>junit</groupId> |
| 25 | + <artifactId>junit</artifactId> |
| 26 | + <version>4.7</version> |
| 27 | + <scope>test</scope> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.springframework</groupId> |
| 31 | + <artifactId>spring-test</artifactId> |
| 32 | + <version>${spring.framework.version}</version> |
| 33 | + <scope>test</scope> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework</groupId> |
| 37 | + <artifactId>spring-context</artifactId> |
| 38 | + <version>${spring.framework.version}</version> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.springframework</groupId> |
| 42 | + <artifactId>spring-expression</artifactId> |
| 43 | + <version>${spring.framework.version}</version> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>log4j</groupId> |
| 47 | + <artifactId>log4j</artifactId> |
| 48 | + <version>1.2.14</version> |
| 49 | + </dependency> |
| 50 | + </dependencies> |
| 51 | + |
| 52 | + <build> |
| 53 | + <plugins> |
| 54 | + <plugin> |
| 55 | + <groupId>org.apache.maven.plugins</groupId> |
| 56 | + <artifactId>maven-compiler-plugin</artifactId> |
| 57 | + <configuration> |
| 58 | + <source>1.5</source> |
| 59 | + <target>1.5</target> |
| 60 | + </configuration> |
| 61 | + </plugin> |
| 62 | + </plugins> |
| 63 | + </build> |
| 64 | +</project> |
0 commit comments