This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://maven.apache.org/xsd/maven-4.0.0.xsd with 13 occurrences migrated to: https://maven.apache.org/xsd/maven-4.0.0.xsd ([https](https://maven.apache.org/xsd/maven-4.0.0.xsd) result 200). * http://www.pivotal.io with 2 occurrences migrated to: https://www.pivotal.io ([https](https://www.pivotal.io) result 301). # Ignored These URLs were intentionally ignored. * http://maven.apache.org/POM/4.0.0 with 26 occurrences * http://www.w3.org/2001/XMLSchema-instance with 13 occurrences Original pull request: #309
129 lines
3.3 KiB
XML
129 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-rest-parent</artifactId>
|
|
<version>2.5.12.BUILD-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Data REST</name>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data.build</groupId>
|
|
<artifactId>spring-data-parent</artifactId>
|
|
<version>1.8.12.BUILD-SNAPSHOT</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>spring-data-rest-core</module>
|
|
<module>spring-data-rest-webmvc</module>
|
|
<module>spring-data-rest-distribution</module>
|
|
<module>spring-data-rest-hal-browser</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.type>multi</project.type>
|
|
<dist.id>spring-data-rest</dist.id>
|
|
|
|
<springdata.commons>1.12.12.BUILD-SNAPSHOT</springdata.commons>
|
|
<springdata.jpa>1.10.12.BUILD-SNAPSHOT</springdata.jpa>
|
|
<springdata.mongodb>1.9.12.BUILD-SNAPSHOT</springdata.mongodb>
|
|
<springdata.gemfire>1.8.12.BUILD-SNAPSHOT</springdata.gemfire>
|
|
<springdata.solr>2.0.12.BUILD-SNAPSHOT</springdata.solr>
|
|
<springdata.cassandra>1.4.12.BUILD-SNAPSHOT</springdata.cassandra>
|
|
<springdata.keyvalue>1.1.12.BUILD-SNAPSHOT</springdata.keyvalue>
|
|
|
|
<hibernate.version>4.3.10.Final</hibernate.version>
|
|
<jsonpath>1.1.0</jsonpath>
|
|
<bundlor.enabled>false</bundlor.enabled>
|
|
</properties>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>ogierke</id>
|
|
<name>Oliver Gierke</name>
|
|
<email>ogierke at pivotal.io</email>
|
|
<organization>Pivotal</organization>
|
|
<organizationUrl>https://www.pivotal.io</organizationUrl>
|
|
<roles>
|
|
<role>Project Lead</role>
|
|
</roles>
|
|
<timezone>+1</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>gturnquist</id>
|
|
<name>Greg Turnquist</name>
|
|
<email>gturnquist at pivotal.io</email>
|
|
<organization>Pivotal</organization>
|
|
<organizationUrl>https://www.pivotal.io</organizationUrl>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-6</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>it</id>
|
|
|
|
<modules>
|
|
<module>spring-data-rest-core</module>
|
|
<module>spring-data-rest-webmvc</module>
|
|
<module>spring-data-rest-distribution</module>
|
|
<module>spring-data-rest-hal-browser</module>
|
|
<module>spring-data-rest-tests</module>
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jfrog.buildinfo</groupId>
|
|
<artifactId>artifactory-maven-plugin</artifactId>
|
|
<inherited>false</inherited>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
<version>1.0.0.GA</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-libs-snapshot</id>
|
|
<url>https://repo.spring.io/libs-snapshot</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>spring-plugins-release</id>
|
|
<url>https://repo.spring.io/plugins-release</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|