|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>org.springframework.issues</groupId> |
| 5 | + <artifactId>spr9157</artifactId> |
| 6 | + <version>0.1</version> |
| 7 | + <packaging>war</packaging> |
| 8 | + <name>SPR-9157 :: Spring3 converter</name> |
| 9 | + <description>SPR-9157 - Spring 3 converter</description> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <java-version>1.6</java-version> |
| 13 | + <spring.version>3.0.7.RELEASE</spring.version> |
| 14 | + <slf4j.version>1.6.4</slf4j.version> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + <dependency> |
| 19 | + <groupId>org.springframework</groupId> |
| 20 | + <artifactId>spring-webmvc</artifactId> |
| 21 | + <version>${spring.version}</version> |
| 22 | + </dependency> |
| 23 | + <dependency> |
| 24 | + <groupId>org.slf4j</groupId> |
| 25 | + <artifactId>slf4j-api</artifactId> |
| 26 | + <version>${slf4j.version}</version> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>ch.qos.logback</groupId> |
| 30 | + <artifactId>logback-classic</artifactId> |
| 31 | + <version>1.0.0</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>javax.servlet</groupId> |
| 35 | + <artifactId>servlet-api</artifactId> |
| 36 | + <version>2.4</version> |
| 37 | + <scope>provided</scope> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>javax.servlet.jsp</groupId> |
| 41 | + <artifactId>jsp-api</artifactId> |
| 42 | + <version>2.0</version> |
| 43 | + <scope>provided</scope> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>javax.servlet</groupId> |
| 47 | + <artifactId>jstl</artifactId> |
| 48 | + <version>1.1.2</version> |
| 49 | + </dependency> |
| 50 | + </dependencies> |
| 51 | + <build> |
| 52 | + <plugins> |
| 53 | + <plugin> |
| 54 | + <artifactId>maven-compiler-plugin</artifactId> |
| 55 | + <version>2.3.2</version> |
| 56 | + <configuration> |
| 57 | + <source>${java-version}</source> |
| 58 | + <target>${java-version}</target> |
| 59 | + </configuration> |
| 60 | + </plugin> |
| 61 | + <plugin> |
| 62 | + <artifactId>maven-jar-plugin</artifactId> |
| 63 | + <version>2.3.1</version> |
| 64 | + </plugin> |
| 65 | + <plugin> |
| 66 | + <artifactId>maven-source-plugin</artifactId> |
| 67 | + <version>2.1.2</version> |
| 68 | + <executions> |
| 69 | + <execution> |
| 70 | + <id>attach-sources</id> |
| 71 | + <goals> |
| 72 | + <goal>jar</goal> |
| 73 | + </goals> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + <plugin> |
| 78 | + <artifactId>maven-surefire-plugin</artifactId> |
| 79 | + <version>2.11</version> |
| 80 | + <configuration> |
| 81 | + <argLine>-Xms64m -Xmx512m -XX:MaxPermSize=128m</argLine> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + <plugin> |
| 85 | + <artifactId>maven-war-plugin</artifactId> |
| 86 | + <version>2.1.1</version> |
| 87 | + </plugin> |
| 88 | + </plugins> |
| 89 | + </build> |
| 90 | +</project> |
0 commit comments