java-tutorials/spring-security-oauth/spring-security-oauth-ui-pa.../pom.xml

36 lines
1.2 KiB
XML
Raw Normal View History

2015-11-05 13:15:22 -05: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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2015-11-09 06:11:28 -05:00
<artifactId>spring-security-oauth-ui-password</artifactId>
2015-11-05 13:15:22 -05:00
2015-11-09 06:11:28 -05:00
<name>spring-security-oauth-ui-password</name>
2015-11-05 13:15:22 -05:00
<packaging>war</packaging>
<parent>
<groupId>org.baeldung</groupId>
<artifactId>spring-security-oauth</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2015-11-09 06:11:28 -05:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2015-11-05 13:15:22 -05:00
</dependencies>
2015-11-09 06:11:28 -05:00
<build>
<finalName>spring-security-oauth-ui-password</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
2015-11-05 13:15:22 -05:00
</project>