2005-12-22 16:17:37 +00:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<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">
|
2005-10-06 20:53:08 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2007-09-21 18:24:16 +00:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-samples</artifactId>
|
2007-09-07 20:14:55 +00:00
|
|
|
<version>2.0-SNAPSHOT</version>
|
2005-10-06 20:53:08 +00:00
|
|
|
</parent>
|
2007-09-21 18:24:16 +00:00
|
|
|
<artifactId>spring-security-sample-annotations</artifactId>
|
2007-09-22 21:44:39 +00:00
|
|
|
<name>Spring Security - Annotations sample</name>
|
2007-05-13 12:30:53 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2007-09-21 18:24:16 +00:00
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core-tiger</artifactId>
|
2007-05-13 12:30:53 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2005-10-06 20:53:08 +00:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-12-22 16:17:37 +00:00
|
|
|
</project>
|