mirror of https://github.com/halo-dev/halo
Collect Gradle plugin versions into root build.gradle (#5511)
#### What type of PR is this? /kind cleanup /area core #### What this PR does / why we need it: This PR collects all Gradle plugin versions into root build.gradle for easy management. #### Does this PR introduce a user-facing change? ```release-note None ```pull/5516/head
parent
b4564f5913
commit
0843747abc
|
@ -2,7 +2,7 @@ plugins {
|
|||
id 'java-library'
|
||||
id 'halo.publish'
|
||||
id 'jacoco'
|
||||
id "io.freefair.lombok" version "8.4"
|
||||
id "io.freefair.lombok"
|
||||
}
|
||||
|
||||
group = 'run.halo.app'
|
||||
|
|
|
@ -2,15 +2,15 @@ import de.undercouch.gradle.tasks.download.Download
|
|||
import org.gradle.crypto.checksum.Checksum
|
||||
|
||||
plugins {
|
||||
id 'org.springframework.boot' version '3.2.3'
|
||||
id 'io.spring.dependency-management' version '1.1.0'
|
||||
id "com.gorylenko.gradle-git-properties" version "2.3.2"
|
||||
id 'org.springframework.boot'
|
||||
id 'io.spring.dependency-management'
|
||||
id "com.gorylenko.gradle-git-properties"
|
||||
id "checkstyle"
|
||||
id 'java'
|
||||
id 'jacoco'
|
||||
id "de.undercouch.download" version "5.3.1"
|
||||
id "io.freefair.lombok" version "8.4"
|
||||
id 'org.gradle.crypto.checksum' version '1.4.0'
|
||||
id "de.undercouch.download"
|
||||
id "io.freefair.lombok"
|
||||
id 'org.gradle.crypto.checksum'
|
||||
}
|
||||
|
||||
group = 'run.halo.app'
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
plugins {
|
||||
id 'org.springframework.boot' version '3.2.3' apply false
|
||||
id 'io.spring.dependency-management' version '1.1.0' apply false
|
||||
id "com.gorylenko.gradle-git-properties" version "2.3.2" apply false
|
||||
id "de.undercouch.download" version "5.3.1" apply false
|
||||
id "io.freefair.lombok" version "8.4" apply false
|
||||
id 'org.gradle.crypto.checksum' version '1.4.0' apply false
|
||||
id "com.github.node-gradle.node" version "7.0.1" apply false
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
import org.springframework.boot.gradle.plugin.SpringBootPlugin
|
||||
|
||||
plugins {
|
||||
id 'org.springframework.boot' version '3.2.3' apply false
|
||||
id 'org.springframework.boot' apply false
|
||||
id 'java-platform'
|
||||
id 'halo.publish'
|
||||
id 'signing'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id "com.github.node-gradle.node" version "7.0.1"
|
||||
id "com.github.node-gradle.node"
|
||||
}
|
||||
|
||||
tasks.register('clean', Delete) {
|
||||
|
|
Loading…
Reference in New Issue