java-tutorials/spring-security-openid/pom.xml

50 lines
1.6 KiB
XML
Raw Normal View History

2016-02-13 15:25:31 -05:00
<?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/xsd/maven-4.0.0.xsd">
2016-03-03 05:32:44 -05:00
<modelVersion>4.0.0</modelVersion>
2016-02-13 15:25:31 -05:00
2016-03-06 04:49:59 -05:00
<groupId>com.baeldung</groupId>
2017-02-02 07:00:34 -05:00
<artifactId>spring-security-openid</artifactId>
2016-03-03 05:32:44 -05:00
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
2016-02-13 15:25:31 -05:00
2017-02-02 07:00:34 -05:00
<name>spring-security-openid</name>
2016-03-03 05:32:44 -05:00
<description>Spring OpenID sample project</description>
2016-02-13 15:25:31 -05:00
2016-03-03 05:32:44 -05:00
<parent>
<artifactId>parent-boot-5</artifactId>
<groupId>com.baeldung</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../parent-boot-5</relativePath>
2016-03-03 05:32:44 -05:00
</parent>
2016-02-13 15:25:31 -05:00
2016-03-03 05:32:44 -05:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
2016-02-13 15:25:31 -05:00
2016-03-03 05:32:44 -05:00
<dependency>
2016-02-13 15:25:31 -05:00
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
</dependency>
2016-03-03 05:32:44 -05:00
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
</dependency>
</dependencies>
2016-02-13 15:25:31 -05:00
</project>