Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Update dependency gradle to v8 #29

Open
wants to merge 5 commits into
base: 2.0.x
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
38 changes: 14 additions & 24 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,27 +1,17 @@
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
}
}

plugins {
id 'org.asciidoctor.convert' version '1.5.3'
id 'eclipse'
id 'idea'
id 'java-library'
id 'org.grails.grails-plugin'
id 'org.grails.internal.grails-plugin-publish'
}

version project.projectVersion
group "org.grails.plugins"

apply plugin: "eclipse"
apply plugin: "idea"
apply plugin: "org.grails.grails-plugin"
apply plugin: "org.grails.internal.grails-plugin-publish"

repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
}

Expand All @@ -40,18 +30,18 @@ configurations {
}

dependencies {
provided 'org.springframework.boot:spring-boot-starter-logging'
provided "org.springframework.boot:spring-boot-starter-actuator"
provided "org.springframework.boot:spring-boot-autoconfigure"
provided "org.springframework.boot:spring-boot-starter-tomcat"
provided "org.grails:grails-dependencies"
api 'org.springframework.boot:spring-boot-starter-logging'
api "org.springframework.boot:spring-boot-starter-actuator"
api "org.springframework.boot:spring-boot-autoconfigure"
api "org.springframework.boot:spring-boot-starter-tomcat"
api "org.grails:grails-dependencies"
api "org.grails:scaffolding-core:$scaffoldingCoreVersion"
console "org.grails:grails-console"
compile "org.grails:scaffolding-core:$scaffoldingCoreVersion"
profile "org.grails.profiles:plugin"
testCompile("org.spockframework:spock-core:${spockVersion}") {
testImplementation("org.spockframework:spock-core:${spockVersion}") {
exclude group:'org.codehaus.groovy', module: 'groovy-all'
}
documentation "org.codehaus.groovy:groovy-all:$groovyVersion"
documentation "org.codehaus.groovy:groovy-all"
}

bootRun {
Expand Down
7 changes: 7 additions & 0 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
repositories {
mavenCentral()
maven { url "https://repo.grails.org/grails/core/" }
}
dependencies {
implementation("org.grails:grails-gradle-plugin:5.3.0")
}
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun Feb 19 02:42:04 EST 2017
grailsVersion=4.1.2
grailsVersion=5.3.2
grailsGradlePluginVersion=5.3.0
scaffoldingCoreVersion=2.1.0
spockVersion=1.2-groovy-2.5
groovyVersion=2.5.14
projectVersion=2.0.1-SNAPSHOT
spockVersion=2.3-groovy-3.0
projectVersion=3.0.0-SNAPSHOT
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading