parent
af7c1f7d45
commit
74f3e2d0c0
106
pom.xml
106
pom.xml
|
@ -15,7 +15,8 @@
|
||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
<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">
|
<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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.mitre</groupId>
|
<groupId>org.mitre</groupId>
|
||||||
<artifactId>openid-connect-parent</artifactId>
|
<artifactId>openid-connect-parent</artifactId>
|
||||||
|
@ -72,7 +73,7 @@
|
||||||
<java-version>1.8</java-version>
|
<java-version>1.8</java-version>
|
||||||
<org.springframework-version>4.1.1.RELEASE</org.springframework-version>
|
<org.springframework-version>4.1.1.RELEASE</org.springframework-version>
|
||||||
<spring.security.version>3.2.5.RELEASE</spring.security.version>
|
<spring.security.version>3.2.5.RELEASE</spring.security.version>
|
||||||
<org.slf4j-version>1.7.12</org.slf4j-version>
|
<org.slf4j-version>1.7.21</org.slf4j-version>
|
||||||
</properties>
|
</properties>
|
||||||
<description>A reference implementation of OpenID Connect (http://openid.net/connect/), OAuth 2.0, and UMA built on top of Java, Spring, and Spring Security. The project contains a fully functioning server, client, and utility library.</description>
|
<description>A reference implementation of OpenID Connect (http://openid.net/connect/), OAuth 2.0, and UMA built on top of Java, Spring, and Spring Security. The project contains a fully functioning server, client, and utility library.</description>
|
||||||
<url>https://github.com/mitreid-connect</url>
|
<url>https://github.com/mitreid-connect</url>
|
||||||
|
@ -87,7 +88,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-war-plugin</artifactId>
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
<version>2.2</version>
|
<version>2.6</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
@ -130,6 +131,16 @@
|
||||||
<artifactId>warpath-maven-plugin</artifactId>
|
<artifactId>warpath-maven-plugin</artifactId>
|
||||||
<version>3.5.0</version>
|
<version>3.5.0</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>3.3</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
|
<version>2.9</version>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -196,19 +207,38 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
<plugin>
|
||||||
</build>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<issueManagement>
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
<url>https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/issues</url>
|
<configuration>
|
||||||
<system>GitHub Issues</system>
|
<reportPlugins>
|
||||||
</issueManagement>
|
<plugin>
|
||||||
<ciManagement>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<system>Travis CI</system>
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
<url>https://travis-ci.org/mitreid-connect/OpenID-Connect-Java-Spring-Server</url>
|
<version>2.4</version>
|
||||||
</ciManagement>
|
<configuration>
|
||||||
|
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
|
||||||
<reporting>
|
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
|
||||||
<plugins>
|
</configuration>
|
||||||
|
<reports>
|
||||||
|
<report>index</report>
|
||||||
|
<report>cim</report>
|
||||||
|
<report>dependencies</report>
|
||||||
|
<report>dependency-convergence</report>
|
||||||
|
<!-- <report>dependency-info</report> -->
|
||||||
|
<report>dependency-management</report>
|
||||||
|
<report>help</report>
|
||||||
|
<report>issue-tracking</report>
|
||||||
|
<report>license</report>
|
||||||
|
<report>mailing-list</report>
|
||||||
|
<report>modules</report>
|
||||||
|
<report>plugin-management</report>
|
||||||
|
<report>plugins</report>
|
||||||
|
<report>project-team</report>
|
||||||
|
<report>scm</report>
|
||||||
|
<report>summary</report>
|
||||||
|
</reports>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
@ -218,9 +248,10 @@
|
||||||
<version>true</version>
|
<version>true</version>
|
||||||
<use>true</use>
|
<use>true</use>
|
||||||
<linksource>true</linksource>
|
<linksource>true</linksource>
|
||||||
<windowtitle>MITREid Connect v. ${project.version}</windowtitle>
|
<windowtitle>MITREid Connect ${project.name} v. ${project.version}</windowtitle>
|
||||||
<doctitle>MITREid Connect v. ${project.version}</doctitle>
|
<doctitle>MITREid Connect ${project.name} v. ${project.version}</doctitle>
|
||||||
<overview>${basedir}/src/main/javadoc/overview.html</overview>
|
<overview>${basedir}/src/main/javadoc/overview.html</overview>
|
||||||
|
<additionalparam>-Xdoclint:none</additionalparam>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -244,17 +275,38 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>cobertura-maven-plugin</artifactId>
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
<version>2.5.2</version>
|
<version>2.7</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<formats>
|
<formats>
|
||||||
<format>html</format>
|
<format>html</format>
|
||||||
<format>xml</format>
|
<format>xml</format>
|
||||||
</formats>
|
</formats>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
<!-- <exclusions> -->
|
||||||
|
<!-- <exclusion> -->
|
||||||
|
<!-- <groupId>asm</groupId> -->
|
||||||
|
<!-- <artifactId>asm</artifactId> -->
|
||||||
|
<!-- </exclusion> -->
|
||||||
|
<!-- <exclusion> -->
|
||||||
|
<!-- <groupId>asm</groupId> -->
|
||||||
|
<!-- <artifactId>asm-attrs</artifactId> -->
|
||||||
|
<!-- </exclusion> -->
|
||||||
|
<!-- </exclusions> -->
|
||||||
|
|
||||||
|
</plugin>
|
||||||
|
</reportPlugins>
|
||||||
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</reporting>
|
</build>
|
||||||
|
<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>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -412,6 +464,13 @@
|
||||||
<version>1.9.5</version>
|
<version>1.9.5</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
|
<version>2.7</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
<type>maven-plugin</type>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- MITREid Connect components -->
|
<!-- MITREid Connect components -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -533,6 +592,11 @@
|
||||||
<groupId>javax.servlet.jsp</groupId>
|
<groupId>javax.servlet.jsp</groupId>
|
||||||
<artifactId>jsp-api</artifactId>
|
<artifactId>jsp-api</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
|
<type>maven-plugin</type>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue