-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
37 lines (29 loc) · 1.24 KB
/
settings.gradle
File metadata and controls
37 lines (29 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.12.1/userguide/multi_project_builds.html in the Gradle documentation.
* This project uses @Incubating APIs which are subject to change.
*/
pluginManagement {
// Include 'plugins build' to define convention plugins.
includeBuild('build-logic')
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
id 'com.diffplug.spotless' version '7.0.2' apply false
// https://github.com/diffplug/spotless-changelog/blob/main/README.md
id 'com.diffplug.spotless-changelog' version '3.1.2' apply false
// https://github.com/radarsh/gradle-test-logger-plugin/blob/develop/CHANGELOG.md
id 'com.adarshr.test-logger' version '4.0.0' apply false
// https://github.com/graalvm/native-build-tools/releases
id 'org.graalvm.buildtools.native' version '0.10.5' apply false
// https://github.com/GradleUp/shadow/releases
id 'com.gradleup.shadow' version '8.3.6' apply false
}
rootProject.name = 'spotless-cli'
include('app', 'testlib')