<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>net.simpledynamics</groupId>
  <artifactId>openid-connect-server-spring-boot-ui-thymeleaf</artifactId>
  <version>0.1.1</version>
  <name>openid-connect-server-spring-boot-ui-thymeleaf</name>
  <description>Thymeleaf UI for spring boot autoconfiguration version of the OpenID Connect Server reference implementation at https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server</description>
  <url>https://github.com/simpledynamics/openid-connect-server-spring-boot</url>
  <organization>
    <name>Simple Dynamics</name>
    <url>http://www.simpledynamics.net/</url>
  </organization>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>barretttucker</id>
      <name>Barrett Tucker</name>
      <email>barrett@simpledynamics.net</email>
    </developer>
    <developer>
      <id>nategrover</id>
      <name>Nate Grover</name>
      <email>nate@simpledynamics.net</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/simpledynamics/openid-connect-server-spring-boot.git</connection>
    <developerConnection>scm:git:https://github.com/simpledynamics/openid-connect-server-spring-boot.git</developerConnection>
    <url>https://github.com/simpledynamics/openid-connect-server-spring-boot</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.thymeleaf.extras</groupId>
      <artifactId>thymeleaf-extras-springsecurity4</artifactId>
      <version>2.1.2.RELEASE</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcprov-jdk15on</artifactId>
      <version>1.52</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.mitre</groupId>
      <artifactId>openid-connect-server</artifactId>
      <version>1.2.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-security</artifactId>
      <version>1.3.3.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-thymeleaf</artifactId>
      <version>1.3.3.RELEASE</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
      <version>1.3.3.RELEASE</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
