Added properties and updated poms for sync to central
parent
94e5c5bcd5
commit
54f1ae972b
|
@ -9,9 +9,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||
<version>0.1-SNAPSHOT</version>
|
||||
<relativePath>..</relativePath>
|
||||
</parent>
|
||||
<groupId>org.mitre</groupId>
|
||||
<artifactId>openid-connect-client</artifactId>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
<description>OpenID Connect Client Files</description>
|
||||
<name>OpenID Connect Client</name>
|
||||
<dependencies>
|
||||
|
|
|
@ -9,9 +9,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
|
|||
<version>0.1-SNAPSHOT</version>
|
||||
<relativePath>..</relativePath>
|
||||
</parent>
|
||||
<groupId>org.mitre</groupId>
|
||||
<artifactId>openid-connect-common</artifactId>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
<description>OpenID Connect Common modules</description>
|
||||
<name>OpenID Connect Common</name>
|
||||
<dependencies>
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
<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>
|
||||
<artifactId>openid-connect-server</artifactId>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
<name>OpenIdConnect Server</name>
|
||||
<packaging>war</packaging>
|
||||
<parent>
|
||||
|
|
62
pom.xml
62
pom.xml
|
@ -4,23 +4,47 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.mitre</groupId>
|
||||
<artifactId>openid-connect-parent</artifactId>
|
||||
<name>OpenIdConnect</name>
|
||||
<name>MITREid Connect</name>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>7</version>
|
||||
</parent>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
<comments>A business-friendly OSS license</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
<modules>
|
||||
<module>openid-connect-common</module>
|
||||
<module>openid-connect-client</module>
|
||||
<module>openid-connect-server</module>
|
||||
</modules>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<id>default</id>
|
||||
<modules>
|
||||
<module>openid-connect-common</module>
|
||||
<module>openid-connect-client</module>
|
||||
<module>openid-connect-server</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:mitreid-connect/OpenID-Connect-Java-Spring-Server.git</developerConnection>
|
||||
<url>https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server.git</url>
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>jricher</id>
|
||||
<name>Justin Richer</name>
|
||||
<email>jricher@mitre.org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>aanganes</id>
|
||||
<name>Amanda Anganes</name>
|
||||
<email>aanganes@mitre.org</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<java-version>1.6</java-version>
|
||||
|
@ -30,7 +54,7 @@
|
|||
</properties>
|
||||
<description>Reference implementation of OpenID Connect spec (http://openid.net/connect/).
|
||||
</description>
|
||||
<url></url>
|
||||
<url>https://github.com/mitreid-connect</url>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -321,4 +345,12 @@
|
|||
</repository>
|
||||
</repositories>
|
||||
|
||||
<issueManagement>
|
||||
<url>https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/issues</url>
|
||||
<system>GitHub Issues</system>
|
||||
</issueManagement>
|
||||
<ciManagement>
|
||||
<system>Travis CI</system>
|
||||
<url>https://travis-ci.org/mitreid-connect/OpenID-Connect-Java-Spring-Server</url>
|
||||
</ciManagement>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue