2007-09-12 17:03:27 -04:00
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2007-09-21 14:24:16 -04:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-samples</artifactId>
|
2007-09-12 17:03:27 -04:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
2007-09-21 14:24:16 -04:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-samples-tutorial</artifactId>
|
2007-09-03 18:28:54 -04:00
|
|
|
<name>Acegi Security Samples - Tutorial</name>
|
|
|
|
<packaging>war</packaging>
|
2007-09-12 17:03:27 -04:00
|
|
|
<dependencies>
|
2007-09-05 19:45:52 -04:00
|
|
|
<dependency>
|
2007-09-21 14:24:16 -04:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
2007-09-12 17:03:27 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
</dependency>
|
2007-09-18 20:23:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2007-09-12 17:03:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>taglibs</groupId>
|
|
|
|
<artifactId>standard</artifactId>
|
|
|
|
<version>1.0.6</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2007-09-05 19:45:52 -04:00
|
|
|
</dependencies>
|
2007-07-24 14:12:09 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2007-09-12 17:03:27 -04:00
|
|
|
<plugin>
|
2007-07-24 14:12:09 -04:00
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>maven-jetty-plugin</artifactId>
|
2007-09-26 08:15:20 -04:00
|
|
|
<version>6.1.5</version>
|
2007-07-24 14:12:09 -04:00
|
|
|
<configuration>
|
2007-09-12 17:03:27 -04:00
|
|
|
<contextPath>/tutorial</contextPath>
|
2007-07-24 14:12:09 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2007-09-05 22:52:09 -04:00
|
|
|
</project>
|