Skip to content

Commit e28bd6b

Browse files
author
Guy Pascarella
committed
Fixed #2 by specifically stating newer plugin versions; General pom cleanup
1 parent b35eb26 commit e28bd6b

File tree

3 files changed

+87
-87
lines changed

3 files changed

+87
-87
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ bin
1010
/target
1111
.springBeans
1212
nb-configuration.xml
13+
.vscode

openid-connect-server/pom.xml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,6 @@
5858
</exclusion>
5959
</exclusions>
6060
</dependency>
61-
<dependency>
62-
<groupId>org.springframework</groupId>
63-
<artifactId>spring-orm</artifactId>
64-
<scope>test</scope>
65-
<exclusions>
66-
<exclusion>
67-
<groupId>commons-logging</groupId>
68-
<artifactId>commons-logging</artifactId>
69-
</exclusion>
70-
</exclusions>
71-
</dependency>
7261
<dependency>
7362
<groupId>org.eclipse.persistence</groupId>
7463
<artifactId>org.eclipse.persistence.core</artifactId>

pom.xml

Lines changed: 86 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
</modules>
4848

4949
<scm>
50-
<connection>scm:git:https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server.git</connection>
51-
<developerConnection>scm:git:git@github.com:mitreid-connect/OpenID-Connect-Java-Spring-Server.git</developerConnection>
52-
<url>https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server.git</url>
50+
<connection>scm:git:https://github.com/PolarisAlpha/OpenID-Connect-Java-Spring-Server.git</connection>
51+
<developerConnection>scm:git:git@github.com:PolarisAlpha/OpenID-Connect-Java-Spring-Server.git</developerConnection>
52+
<url>https://github.com/PolarisAlpha/OpenID-Connect-Java-Spring-Server.git</url>
5353
<tag>HEAD</tag>
5454
</scm>
5555

@@ -74,7 +74,7 @@
7474
<org.slf4j-version>1.7.25</org.slf4j-version>
7575
</properties>
7676
<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>
77-
<url>https://github.com/mitreid-connect</url>
77+
<url>https://github.com/PolarisAlpha</url>
7878
<build>
7979
<pluginManagement>
8080
<plugins>
@@ -144,6 +144,16 @@
144144
<artifactId>maven-project-info-reports-plugin</artifactId>
145145
<version>2.9</version>
146146
</plugin>
147+
<plugin>
148+
<groupId>org.apache.maven.plugins</groupId>
149+
<artifactId>maven-release-plugin</artifactId>
150+
<version>2.5.3</version>
151+
</plugin>
152+
<plugin>
153+
<groupId>org.apache.maven.plugins</groupId>
154+
<artifactId>maven-gpg-plugin</artifactId>
155+
<version>1.6</version>
156+
</plugin>
147157
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
148158
<plugin>
149159
<groupId>org.eclipse.m2e</groupId>
@@ -279,86 +289,87 @@
279289
</execution>
280290
</executions>
281291
</plugin>
282-
<plugin>
283-
<groupId>org.apache.maven.plugins</groupId>
284-
<artifactId>maven-site-plugin</artifactId>
285-
<configuration>
286-
<reportPlugins>
287-
<plugin>
288-
<groupId>org.apache.maven.plugins</groupId>
289-
<artifactId>maven-project-info-reports-plugin</artifactId>
290-
<configuration>
291-
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
292-
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
293-
</configuration>
294-
<reports>
295-
<report>index</report>
296-
<report>cim</report>
297-
<report>dependencies</report>
298-
<report>dependency-convergence</report>
299-
<!-- <report>dependency-info</report> -->
300-
<report>dependency-management</report>
301-
<report>help</report>
302-
<report>issue-tracking</report>
303-
<report>license</report>
304-
<report>mailing-list</report>
305-
<report>modules</report>
306-
<report>plugin-management</report>
307-
<report>plugins</report>
308-
<report>project-team</report>
309-
<report>scm</report>
310-
<report>summary</report>
311-
</reports>
312-
</plugin>
313-
<plugin>
314-
<groupId>org.apache.maven.plugins</groupId>
315-
<artifactId>maven-javadoc-plugin</artifactId>
316-
<configuration>
317-
<author>true</author>
318-
<version>true</version>
319-
<use>true</use>
320-
<linksource>true</linksource>
321-
<windowtitle>MITREid Connect ${project.name} v. ${project.version}</windowtitle>
322-
<doctitle>MITREid Connect ${project.name} v. ${project.version}</doctitle>
323-
<overview>${basedir}/src/main/javadoc/overview.html</overview>
324-
<additionalparam>-Xdoclint:none</additionalparam>
325-
</configuration>
326-
</plugin>
327-
<plugin>
328-
<groupId>org.apache.maven.plugins</groupId>
329-
<artifactId>maven-checkstyle-plugin</artifactId>
330-
<configuration>
331-
<configLocation>checkstyle.xml</configLocation>
332-
</configuration>
333-
</plugin>
334-
<plugin>
335-
<groupId>org.apache.maven.plugins</groupId>
336-
<artifactId>maven-surefire-plugin</artifactId>
337-
<configuration>
338-
<junitArtifactName>junit:junit</junitArtifactName>
339-
<excludes>
340-
<exclude>**/*_Roo_*</exclude>
341-
</excludes>
342-
</configuration>
343-
</plugin>
344-
<plugin>
345-
<groupId>org.jacoco</groupId>
346-
<artifactId>jacoco-maven-plugin</artifactId>
347-
</plugin>
348-
</reportPlugins>
349-
</configuration>
350-
</plugin>
351292
</plugins>
352293
</build>
353294
<issueManagement>
354-
<url>https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/issues</url>
295+
<url>https://github.com/PolarisAlpha/OpenID-Connect-Java-Spring-Server/issues</url>
355296
<system>GitHub Issues</system>
356297
</issueManagement>
357298
<ciManagement>
358299
<system>Travis CI</system>
359-
<url>https://travis-ci.org/mitreid-connect/OpenID-Connect-Java-Spring-Server</url>
300+
<url>https://travis-ci.org/PolarisAlpha/OpenID-Connect-Java-Spring-Server</url>
360301
</ciManagement>
361302

303+
<reporting>
304+
<plugins>
305+
<plugin>
306+
<groupId>org.apache.maven.plugins</groupId>
307+
<artifactId>maven-project-info-reports-plugin</artifactId>
308+
<configuration>
309+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
310+
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
311+
</configuration>
312+
<reportSets>
313+
<reportSet>
314+
<reports>
315+
<report>index</report>
316+
<report>cim</report>
317+
<report>dependencies</report>
318+
<report>dependency-convergence</report>
319+
<!-- <report>dependency-info</report> -->
320+
<report>dependency-management</report>
321+
<report>help</report>
322+
<report>issue-tracking</report>
323+
<report>license</report>
324+
<report>mailing-list</report>
325+
<report>modules</report>
326+
<report>plugin-management</report>
327+
<report>plugins</report>
328+
<report>project-team</report>
329+
<report>scm</report>
330+
<report>summary</report>
331+
</reports>
332+
</reportSet>
333+
</reportSets>
334+
</plugin>
335+
<plugin>
336+
<groupId>org.apache.maven.plugins</groupId>
337+
<artifactId>maven-javadoc-plugin</artifactId>
338+
<configuration>
339+
<author>true</author>
340+
<version>true</version>
341+
<use>true</use>
342+
<linksource>true</linksource>
343+
<windowtitle>MITREid Connect ${project.name} v. ${project.version}</windowtitle>
344+
<doctitle>MITREid Connect ${project.name} v. ${project.version}</doctitle>
345+
<overview>${basedir}/src/main/javadoc/overview.html</overview>
346+
<additionalparam>-Xdoclint:none</additionalparam>
347+
</configuration>
348+
</plugin>
349+
<plugin>
350+
<groupId>org.apache.maven.plugins</groupId>
351+
<artifactId>maven-checkstyle-plugin</artifactId>
352+
<configuration>
353+
<configLocation>checkstyle.xml</configLocation>
354+
</configuration>
355+
</plugin>
356+
<plugin>
357+
<groupId>org.apache.maven.plugins</groupId>
358+
<artifactId>maven-surefire-plugin</artifactId>
359+
<configuration>
360+
<junitArtifactName>junit:junit</junitArtifactName>
361+
<excludes>
362+
<exclude>**/*_Roo_*</exclude>
363+
</excludes>
364+
</configuration>
365+
</plugin>
366+
<plugin>
367+
<groupId>org.jacoco</groupId>
368+
<artifactId>jacoco-maven-plugin</artifactId>
369+
</plugin>
370+
</plugins>
371+
</reporting>
372+
362373
<dependencyManagement>
363374
<dependencies>
364375
<!-- Spring -->
@@ -610,7 +621,6 @@
610621
</dependencies>
611622
</dependencyManagement>
612623

613-
614624
<dependencies>
615625
<dependency>
616626
<groupId>junit</groupId>

0 commit comments

Comments
 (0)