-
Wesley Szamotula authoredWesley Szamotula authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pom.xml 1.84 KiB
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>edu.wisc.uwss</groupId>
<artifactId>uw-spring-security</artifactId>
<version>3.0.1-SNAPSHOT</version>
</parent>
<artifactId>uw-spring-security-config</artifactId>
<name>UW Spring Security Configuration</name>
<description>Provides Spring @Configuration classes for using UW Spring Security Core.</description>
<dependencies>
<dependency>
<groupId>edu.wisc.uwss</groupId>
<artifactId>uw-spring-security-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>edu.wisc.doit.adi</groupId>
<artifactId>preauth-simulation-filter</artifactId>
</dependency>
<dependency>
<groupId>edu.wisc.doit.adi</groupId>
<artifactId>spring-profile-conditional-filter</artifactId>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>