Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

URL Cleanup #156

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ subprojects {
repositories {
mavenRepo name:'mavenLocal',
urls:new File(System.getProperty("user.home"), ".m2/repository").toURL().toString()
mavenRepo(urls: "http://repo.grails.org/grails/core") {
mavenRepo(urls: "https://repo.grails.org/grails/core") {
if (project.hasProperty('snapshotTimeout')) {
setSnapshotTimeout(Long.parseLong(project.snapshotTimeout))
}
Expand Down Expand Up @@ -124,17 +124,17 @@ subprojects {
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'http://github.com/SpringSource/grails-data-mapping/'
url 'https://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'https://github.com/SpringSource/grails-data-mapping/'
}
}
}
}

uploadArchives {
description = "Does a maven deploy of archives artifacts"
def milestoneRepositoryUrl = "http://repo.grails.org/grails/libs-releases-local"
def snapshotRepositoryUrl = "http://repo.grails.org/grails/libs-snapshots-local"
def milestoneRepositoryUrl = "https://repo.grails.org/grails/libs-releases-local"
def snapshotRepositoryUrl = "https://repo.grails.org/grails/libs-snapshots-local"

// add a configuration with a classpath that includes our s3 maven deployer
configurations { deployerJars }
Expand Down Expand Up @@ -175,7 +175,7 @@ subprojects {
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
url 'https://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
Expand Down
2 changes: 1 addition & 1 deletion grails-datastore-appengine/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
repositories {
mavenRepo urls:'http://maven-gae-plugin.googlecode.com/svn/repository/'
mavenRepo urls:'https://maven-gae-plugin.googlecode.com/svn/repository/'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion grails-datastore-cassandra/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
repositories {
mavenRepo urls:'http://eaio.com/maven2'
mavenRepo urls:'https://eaio.com/maven2'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion grails-datastore-gorm-neo4j/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
repositories {
mavenRepo urls:'http://m2.neo4j.org/'
mavenRepo urls:'https://m2.neo4j.org/'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion grails-documentation-redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ else {
classpath = files(groovyProjects().collect { project ->
[project.sourceSets.main.compileClasspath, project.sourceSets.main.classes]
})
options.links("http://download.oracle.com/javase/6/docs/api/", "http://groovy.codehaus.org/gapi/")
options.links("https://download.oracle.com/javase/6/docs/api/", "https://groovy.codehaus.org/gapi/")
doFirst {
title = "Datastore API $version"
}
Expand Down
2 changes: 1 addition & 1 deletion grails-documentation-riak/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (Boolean.getBoolean("skip.javadoc")) {
classpath = files(groovyProjects().collect { project ->
[project.sourceSets.main.compileClasspath, project.sourceSets.main.classes]
})
options.links("http://download.oracle.com/javase/6/docs/api/", "http://groovy.codehaus.org/gapi/")
options.links("https://download.oracle.com/javase/6/docs/api/", "https://groovy.codehaus.org/gapi/")
doFirst {
title = "Datastore API $version"
}
Expand Down
4 changes: 2 additions & 2 deletions grails-plugins/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {

repositories {
mavenCentral()
mavenRepo urls: "http://repo.grails.org/grails/core"
mavenRepo urls: "https://repo.grails.org/grails/core"
}

dependencies {
Expand All @@ -25,7 +25,7 @@ configurations {
}

repositories {
mavenRepo urls:"http://repository.codehaus.org/"
mavenRepo urls:"https://repository.codehaus.org/"
}

dependencies {
Expand Down
6 changes: 3 additions & 3 deletions grails-plugins/riak/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -19,7 +19,7 @@
buildscript {
repositories {
mavenCentral()
mavenRepo urls: "http://repository.jboss.org/maven2/"
mavenRepo urls: "https://repository.jboss.org/maven2/"
}
dependencies {
classpath "org.grails:grails-gradle-plugin:1.0", "org.grails:grails-bootstrap:1.3.6"
Expand All @@ -40,7 +40,7 @@ configurations {
}

repositories {
mavenRepo urls: "http://repository.codehaus.org/"
mavenRepo urls: "https://repository.codehaus.org/"
}

dependencies {
Expand Down