|
47 | 47 | </modules>
|
48 | 48 |
|
49 | 49 | <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> |
53 | 53 | <tag>HEAD</tag>
|
54 | 54 | </scm>
|
55 | 55 |
|
|
74 | 74 | <org.slf4j-version>1.7.25</org.slf4j-version>
|
75 | 75 | </properties>
|
76 | 76 | <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> |
78 | 78 | <build>
|
79 | 79 | <pluginManagement>
|
80 | 80 | <plugins>
|
|
144 | 144 | <artifactId>maven-project-info-reports-plugin</artifactId>
|
145 | 145 | <version>2.9</version>
|
146 | 146 | </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> |
147 | 157 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
148 | 158 | <plugin>
|
149 | 159 | <groupId>org.eclipse.m2e</groupId>
|
|
279 | 289 | </execution>
|
280 | 290 | </executions>
|
281 | 291 | </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> |
351 | 292 | </plugins>
|
352 | 293 | </build>
|
353 | 294 | <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> |
355 | 296 | <system>GitHub Issues</system>
|
356 | 297 | </issueManagement>
|
357 | 298 | <ciManagement>
|
358 | 299 | <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> |
360 | 301 | </ciManagement>
|
361 | 302 |
|
| 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 | + |
362 | 373 | <dependencyManagement>
|
363 | 374 | <dependencies>
|
364 | 375 | <!-- Spring -->
|
|
610 | 621 | </dependencies>
|
611 | 622 | </dependencyManagement>
|
612 | 623 |
|
613 |
| - |
614 | 624 | <dependencies>
|
615 | 625 | <dependency>
|
616 | 626 | <groupId>junit</groupId>
|
|
0 commit comments