2011-11-02 16:31:29 +00: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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.mitre</groupId>
|
2012-01-04 19:15:03 +00:00
|
|
|
<artifactId>openid-connect-parent</artifactId>
|
2011-11-02 16:31:29 +00:00
|
|
|
<name>OpenIdConnect</name>
|
2012-01-04 15:00:45 +00:00
|
|
|
<packaging>pom</packaging>
|
2011-11-02 16:31:29 +00:00
|
|
|
<version>0.1</version>
|
2012-01-06 21:49:22 +00:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<id>default</id>
|
|
|
|
<modules>
|
|
|
|
<module>spring-security-oauth/spring-security-oauth2</module>
|
|
|
|
<module>server</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2011-11-02 16:31:29 +00:00
|
|
|
<properties>
|
|
|
|
<java-version>1.6</java-version>
|
2012-01-04 20:40:22 +00:00
|
|
|
<spring.version>3.1.0.RELEASE</spring.version>
|
2011-11-02 16:31:29 +00:00
|
|
|
<org.slf4j-version>1.5.10</org.slf4j-version>
|
2011-12-13 17:50:50 +00:00
|
|
|
<spring.security.version>3.1.0.RELEASE</spring.security.version>
|
2011-11-02 16:31:29 +00:00
|
|
|
</properties>
|
|
|
|
<description>Reference implementation of OpenID Connect spec (http://openid.net/connect/).
|
|
|
|
</description>
|
|
|
|
<url></url>
|
|
|
|
</project>
|