72 lines
2.1 KiB
XML
72 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<groupId>org.springframework.security.extensions</groupId>
|
|
<artifactId>spring-security-kerberos-parent</artifactId>
|
|
<version>1.0.0.CI-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.springframework.security.extensions</groupId>
|
|
<artifactId>spring-security-kerberos-core</artifactId>
|
|
<version>1.0.0.CI-SNAPSHOT</version>
|
|
<name>Spring Security Kerberos Core</name>
|
|
<packaging>jar</packaging>
|
|
<description>Spring Security Kerberos Core</description>
|
|
<developers>
|
|
<developer>
|
|
<name>Mike Wiesner</name>
|
|
<id>mwiesner</id>
|
|
<organization>
|
|
SpringSource
|
|
</organization>
|
|
</developer>
|
|
</developers>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>1.9.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-core</artifactId>
|
|
<version>${spring.security.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-web</artifactId>
|
|
<version>${spring.security.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.1.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<spring.version>3.0.7.RELEASE</spring.version>
|
|
<spring.security.version>3.1.2.RELEASE</spring.security.version>
|
|
</properties>
|
|
</project>
|