java-tutorials/spring-openid/pom.xml

67 lines
2.1 KiB
XML
Raw Normal View History

2016-02-13 15:25:31 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2016-03-03 05:32:44 -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>
2016-02-13 15:25:31 -05:00
2016-03-06 04:49:59 -05:00
<groupId>com.baeldung</groupId>
2016-03-03 05:32:44 -05:00
<artifactId>spring-openid</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
2016-02-13 15:25:31 -05:00
2016-03-03 05:32:44 -05:00
<name>spring-openid</name>
<description>Spring OpenID sample project</description>
2016-02-13 15:25:31 -05:00
2016-03-03 05:32:44 -05:00
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2016-12-06 09:10:47 -05:00
<version>1.4.2.RELEASE</version>
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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
2016-02-13 15:25:31 -05:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
2016-03-03 05:32:44 -05:00
2016-02-13 15:25:31 -05:00
</project>