<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> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> </build> <parent> <groupId>edu.wisc.uwss</groupId> <artifactId>uw-spring-security</artifactId> <version>3.0.6</version> </parent> <artifactId>uw-spring-security-web</artifactId> <name>UW Spring Security Web</name> <description>Web and REST controllers useful with UW Spring Security.</description> <dependencies> <dependency> <groupId>edu.wisc.uwss</groupId> <artifactId>uw-spring-security-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <dependency> <groupId>edu.wisc.uwss</groupId> <artifactId>uw-spring-security-config</artifactId> <version>${project.version}</version> </dependency> </dependencies> </project>