|
| 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-9176</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>1.0</version> |
| 8 | + <name>demonstration of request memory leak</name> |
| 9 | + <dependencies> |
| 10 | + <dependency> |
| 11 | + <groupId>junit</groupId> |
| 12 | + <artifactId>junit</artifactId> |
| 13 | + <version>3.8.1</version> |
| 14 | + <scope>test</scope> |
| 15 | + </dependency> |
| 16 | + <dependency> |
| 17 | + <groupId>org.springframework</groupId> |
| 18 | + <artifactId>spring-context</artifactId> |
| 19 | + <version>3.0.5.RELEASE</version> |
| 20 | + </dependency> |
| 21 | + <dependency> |
| 22 | + <groupId>org.springframework</groupId> |
| 23 | + <artifactId>spring-webmvc</artifactId> |
| 24 | + <version>3.0.5.RELEASE</version> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>cglib</groupId> |
| 28 | + <artifactId>cglib-nodep</artifactId> |
| 29 | + <version>2.2</version> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>javax.servlet</groupId> |
| 33 | + <artifactId>servlet-api</artifactId> |
| 34 | + <version>2.5</version> |
| 35 | + <scope>provided</scope> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework</groupId> |
| 39 | + <artifactId>spring-web</artifactId> |
| 40 | + <version>3.0.5.RELEASE</version> |
| 41 | + </dependency> |
| 42 | + </dependencies> |
| 43 | + <build> |
| 44 | + <finalName>SPR-9176</finalName> |
| 45 | + <plugins> |
| 46 | + <plugin> |
| 47 | + <artifactId>maven-compiler-plugin</artifactId> |
| 48 | + <version>2.3.2</version> |
| 49 | + <configuration> |
| 50 | + <source>1.6</source> |
| 51 | + <target>1.6</target> |
| 52 | + </configuration> |
| 53 | + </plugin> |
| 54 | + </plugins> |
| 55 | + </build> |
| 56 | +</project> |
0 commit comments