|
| 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> |
| 4 | + <groupId>org.springframework.issues</groupId> |
| 5 | + <artifactId>SPR-10125</artifactId> |
| 6 | + <version>1.0-SNAPSHOT</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <dependencies> |
| 9 | + <dependency> |
| 10 | + <groupId>org.springframework</groupId> |
| 11 | + <artifactId>spring-context</artifactId> |
| 12 | + <version>3.0.2.RELEASE</version> |
| 13 | + </dependency> |
| 14 | + <dependency> |
| 15 | + <groupId>log4j</groupId> |
| 16 | + <artifactId>log4j</artifactId> |
| 17 | + <version>1.2.16</version> |
| 18 | + </dependency> |
| 19 | + <dependency> |
| 20 | + <groupId>junit</groupId> |
| 21 | + <artifactId>junit</artifactId> |
| 22 | + <version>4.8</version> |
| 23 | + <scope>test</scope> |
| 24 | + </dependency> |
| 25 | + </dependencies> |
| 26 | + <repositories> |
| 27 | + <!-- |
| 28 | + <repository> |
| 29 | + <id>s2-release</id> |
| 30 | + <url>http://repo.springsource.org/release</url> |
| 31 | + </repository> |
| 32 | + <repository> |
| 33 | + <id>s2-milestone</id> |
| 34 | + <url>http://repo.springsource.org/milestone</url> |
| 35 | + </repository> |
| 36 | + <repository> |
| 37 | + <id>s2-staging</id> |
| 38 | + <url>http://repo.springsource.org/libs-staging-local</url> |
| 39 | + </repository> |
| 40 | + --> |
| 41 | + <repository> |
| 42 | + <id>s2-snapshot</id> |
| 43 | + <url>http://repo.springsource.org/snapshot</url> |
| 44 | + <snapshots><enabled>true</enabled></snapshots> |
| 45 | + </repository> |
| 46 | + </repositories> |
| 47 | + <properties> |
| 48 | + <project.build.sourceEncoding>UTF8</project.build.sourceEncoding> |
| 49 | + </properties> |
| 50 | + <build> |
| 51 | + <plugins> |
| 52 | + <plugin> |
| 53 | + <artifactId>maven-compiler-plugin</artifactId> |
| 54 | + <version>2.3.2</version> |
| 55 | + <configuration> |
| 56 | + <source>1.6</source> |
| 57 | + <target>1.6</target> |
| 58 | + </configuration> |
| 59 | + </plugin> |
| 60 | + <plugin> |
| 61 | + <artifactId>maven-surefire-plugin</artifactId> |
| 62 | + <version>2.7.2</version> |
| 63 | + <configuration> |
| 64 | + <includes> |
| 65 | + <include>**/*Tests.java</include> |
| 66 | + </includes> |
| 67 | + <excludes> |
| 68 | + <exclude>**/*Abstract*.java</exclude> |
| 69 | + </excludes> |
| 70 | + </configuration> |
| 71 | + </plugin> |
| 72 | + </plugins> |
| 73 | + </build> |
| 74 | +</project> |
| 75 | + |
0 commit comments