Skip to content

Commit 2ce8d83

Browse files
committed
Change repo to new nexus location
1 parent 4a25c0a commit 2ce8d83

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,20 @@ buildscript {
33
jcenter()
44
mavenLocal()
55
maven {
6-
url "https://dl.bintray.com/dreamscale-io/maven-public"
6+
url "http://nexus.twilightcity.net:8081/repository/public"
77
}
88
}
99
dependencies {
1010
classpath "org.dreamscale:gradle-core:1.3.+"
1111
}
1212
}
1313

14-
plugins {
15-
id "com.jfrog.bintray" version "1.7"
16-
}
17-
1814
ext {
1915
customPublication = true
2016

2117
repositoryName = 'maven'
2218
if (!project.hasProperty("mavenUrl")) {
23-
mavenUrl = "https://dl.bintray.com/dreamscale-io/maven-public"
19+
mavenUrl = "http://nexus.twilightcity.net:8081/repository/public"
2420
}
2521
repositoryPublicUrl = mavenUrl + "/content/groups/public"
2622
repositoryReleaseUrl = mavenUrl + "/content/repositories/releases"
@@ -49,6 +45,9 @@ publishing {
4945
}
5046
}
5147

48+
downloadGradle.gradleDownloadBase = "https://downloads.gradle-dn.com/distributions"
49+
50+
/*
5251
bintray {
5352
user = project.hasProperty('bintray.user') ? project.property('bintray.user') : System.getenv('BINTRAY_USER')
5453
key = project.hasProperty('bintray.apiKey') ? project.property('bintray.apiKey') : System.getenv('BINTRAY_API_KEY')
@@ -66,3 +65,4 @@ bintray {
6665
labels = ['gradle']
6766
}
6867
}
68+
*/

customized.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ allprojects {
1313
buildscript {
1414
ext {
1515
if (project.hasProperty("repositoryPublicUrl") == false) {
16-
repositoryPublicUrl = "https://dl.bintray.com/dreamscale-io/maven-public"
16+
repositoryPublicUrl = "http://nexus.twilightcity.net:8081/repository/public
1717
}
1818
}
1919
@@ -52,16 +52,16 @@ allprojects {
5252
5353
ext["dreamscale.printCorePluginVersion"] = ""
5454
55-
ext["organization.repo.url"] = "https://github.com/dreamscale-io"
56-
ext["organization.repo.connection"] = "scm:git:[email protected]:dreamscale-io"
55+
ext["organization.repo.url"] = "https://github.com/twilightcity-net"
56+
ext["organization.repo.connection"] = "scm:git:[email protected]:twilightcity-net"
5757

5858
ext["bintray.repo"] = "maven-public"
59-
ext["bintray.userOrg"] = "dreamscale-io"
59+
ext["bintray.userOrg"] = "twilightcity-net"
6060

6161
ext["maven.pom.packaging"] = "jar"
62-
ext["maven.pom.developer.id"] = "dreamscale"
63-
ext["maven.pom.developer.name"] = "DreamScale Open Source Development"
64-
ext["maven.pom.developer.email"] = "opensource@dreamscale.io"
62+
ext["maven.pom.developer.id"] = "twilightcity"
63+
ext["maven.pom.developer.name"] = "TwilightCity Open Source Development"
64+
ext["maven.pom.developer.email"] = "opensource@twilightcity.net"
6565
}
6666

6767
def hasReadCredentials(project) {

0 commit comments

Comments
 (0)