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). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://mybatis.org/dtd/mybatis-3-config.dtd (301) with 1 occurrences could not be migrated: ([https](https://mybatis.org/dtd/mybatis-3-config.dtd) result SSLHandshakeException). * http://mybatis.org/dtd/mybatis-3-mapper.dtd (301) with 2 occurrences could not be migrated: ([https](https://mybatis.org/dtd/mybatis-3-mapper.dtd) result SSLHandshakeException). # 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 70 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://maven.apache.org/maven-v4_0_0.xsd with 6 occurrences migrated to: https://maven.apache.org/maven-v4_0_0.xsd ([https](https://maven.apache.org/maven-v4_0_0.xsd) result 301). * http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd with 1 occurrences migrated to: https://java.sun.com/xml/ns/persistence/persistence_2_0.xsd ([https](https://java.sun.com/xml/ns/persistence/persistence_2_0.xsd) result 302). # Ignored These URLs were intentionally ignored. * http://java.sun.com/xml/ns/persistence with 2 occurrences * http://maven.apache.org/POM/4.0.0 with 152 occurrences * http://www.w3.org/2001/XMLSchema-instance with 77 occurrences Original pull request: #472
165 lines
3.8 KiB
XML
165 lines
3.8 KiB
XML
<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.examples</groupId>
|
|
<artifactId>spring-data-examples</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Data - Examples</name>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.3.RELEASE</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>bom</module>
|
|
<module>couchbase</module>
|
|
<module>elasticsearch</module>
|
|
<module>jdbc</module>
|
|
<module>jpa</module>
|
|
<module>ldap</module>
|
|
<module>map</module>
|
|
<module>mongodb</module>
|
|
<module>multi-store</module>
|
|
<module>neo4j</module>
|
|
<module>r2dbc</module>
|
|
<module>rest</module>
|
|
<module>redis</module>
|
|
<module>solr</module>
|
|
<module>web</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<apt.version>1.1.3</apt.version>
|
|
<lombok.version>1.18.0</lombok.version>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>spring-data-next</id>
|
|
<properties>
|
|
<spring-data-releasetrain.version>Lovelace-BUILD-SNAPSHOT</spring-data-releasetrain.version>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>spring-data-next-releasetrain</id>
|
|
<properties>
|
|
<spring-data-releasetrain.version>Moore-BUILD-SNAPSHOT</spring-data-releasetrain.version>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>spring-data-next-releasetrain-released</id>
|
|
<properties>
|
|
<spring-data-releasetrain.version>Lovelace-SR3</spring-data-releasetrain.version>
|
|
</properties>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>java8</id>
|
|
|
|
<activation>
|
|
<jdk>1.8</jdk>
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<!-- Embedded Cassandra (cassandra-all) is not compatible with Java runtime 9 and higher.
|
|
See https://issues.apache.org/jira/browse/CASSANDRA-9608 -->
|
|
<module>cassandra</module>
|
|
</modules>
|
|
</profile>
|
|
|
|
<profile>
|
|
<id>java-next</id>
|
|
|
|
<activation>
|
|
<jdk>[9,)</jdk>
|
|
</activation>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>ogierke</id>
|
|
<name>Oliver Gierke</name>
|
|
<email>ogierke@pivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>tdarimont</id>
|
|
<name>Thomas Darimont</name>
|
|
<email>tdarimont@gopivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>cstrobl</id>
|
|
<name>Christoph Strobl</name>
|
|
<email>cstrobl@pivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>gturnquist</id>
|
|
<name>Greg Turnquist</name>
|
|
<email>gturnquist@pivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>mpaluch</id>
|
|
<name>Mark Paluch</name>
|
|
<email>mpaluch@pivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>jschauder</id>
|
|
<name>Jens Schauder</name>
|
|
<email>jschauder@pivotal.io</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Test dependencies -->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-libs-snapshot</id>
|
|
<url>https://repo.spring.io/libs-snapshot</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>spring-libs-snapshot</id>
|
|
<url>https://repo.spring.io/libs-snapshot</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|