TAVERNA-1029 Only use https Maven repos
Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-maven-parent/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-maven-parent/commit/dd1a7de3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-maven-parent/tree/dd1a7de3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-maven-parent/diff/dd1a7de3 Branch: refs/heads/master Commit: dd1a7de3e3c22e1e15ab455ca25ce9e6fb13e24b Parents: 1fc91ba Author: Stian Soiland-Reyes <[email protected]> Authored: Mon Jan 8 14:22:01 2018 +0000 Committer: Stian Soiland-Reyes <[email protected]> Committed: Mon Jan 8 14:22:01 2018 +0000 ---------------------------------------------------------------------- pom.xml | 42 +++++++++++++++++++++++++++++++----------- 1 file changed, 31 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-maven-parent/blob/dd1a7de3/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3acb8b4..142a044 100644 --- a/pom.xml +++ b/pom.xml @@ -846,9 +846,9 @@ upgraded - this leads to recursive spaghetti. <repositories> - <!-- apache.snapshots inherited from Apache parent: +<!-- apache.snapshots inherited from Apache parent: <url>https://repository.apache.org/snapshots</url> - --> +--> <repository> <snapshots> @@ -859,6 +859,7 @@ upgraded - this leads to recursive spaghetti. <url>https://dl.bintray.com/spring/jars</url> </repository> +<!-- Now at https://repo.spring.io/release and JCenter <repository> <id>com.springsource.repository.bundles.release</id> <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name> @@ -875,16 +876,35 @@ upgraded - this leads to recursive spaghetti. <enabled>false</enabled> </snapshots> </repository> +--> -<repository> - <id>repository.spring.milestone</id> - <name>Spring Milestone Repository</name> - <url>https://repo.spring.io/milestone</url> - <releases /> - <snapshots> - <enabled>false</enabled> - </snapshots> -</repository> + <repository> + <id>repository.spring.release</id> + <name>Spring Releases</name> + <url>https://repo.spring.io/release</url> + <releases /> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + <repository> + <id>repository.spring.milestone</id> + <name>Spring Milestone Repository</name> + <url>https://repo.spring.io/milestone</url> + <releases /> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + <repository> + <id>jcenter</id> + <name>JCenter at Bintray</name> + <url>https://jcenter.bintray.com/</url> + <releases /> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> </repositories>
