Skip to content

Commit

Permalink
Grace: update gradle build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Mar 11, 2024
1 parent 0fbf2f1 commit 7597d4d
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "io.github.gradle-nexus:publish-plugin:$gradleNexusPublishPluginVersion"
Expand Down Expand Up @@ -87,7 +87,6 @@ allprojects {
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://repo.grails.org/grails/core" }
if (project.projectVersion.endsWith('-SNAPSHOT')) {
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
}
Expand Down Expand Up @@ -160,16 +159,16 @@ subprojects { project ->
}

delegate.scm {
delegate.url 'scm:git@github.com:graceframework/grace-framework.git'
delegate.connection 'scm:git@github.com:graceframework/grace-framework.git'
delegate.developerConnection 'scm:[email protected]:graceframework/grace-framework.git'
delegate.url 'https://github.com/graceframework/grace-framework'
delegate.connection 'scm:git:git://github.com/graceframework/grace-framework.git'
delegate.developerConnection 'scm:git:ssh://git@github.com/graceframework/grace-framework.git'
}

delegate.developers {
delegate.developer {
delegate.id 'rainboyan'
delegate.email '[email protected]'
delegate.name 'Michael Yan'
delegate.email '[email protected]'
}
}
}
Expand Down Expand Up @@ -408,8 +407,6 @@ subprojects { project ->
published.extendsFrom archives, meta
testRuntimeOnly {
exclude group: 'commons-logging', module: 'commons-logging'
exclude group: 'org.grails', module: 'grails-bootstrap'
exclude group: 'org.grails', module: 'grails-core'
}
}

Expand Down

0 comments on commit 7597d4d

Please sign in to comment.