-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
38 lines (32 loc) · 999 Bytes
/
settings.gradle
File metadata and controls
38 lines (32 loc) · 999 Bytes
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
38
pluginManagement {
apply from: 'https://raw.githubusercontent.com/nokeedev/nokeebuild-plugins/refs/heads/main/init.gradle'
}
plugins {
id 'dev.gradleplugins.gradle-plugin-development' version '1.7.1'
id 'nokeebuild.source-control-management'
}
include 'elements'
include 'gradle-fixtures-source-elements'
include 'nokeetemplates-plugins'
include 'source-elements-annotation-processor'
include 'test-gradle-projects'
gradle.allprojects {
repositories {
mavenCentral()
gradlePluginPortal()
}
pluginManager.withPlugin('java-base') {
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
apply plugin: 'maven-publish'
}
gradle.rootProject {
tasks.register('check') { dependsOn(subprojects.collect { "${it.name}:check" }) }
}
sourceControlManagement {
gitRepository(uri("https://github.com/nokeedev/nokee-hamcrest.git")) { submodule = true }
gitRepository(uri("https://github.com/gradle-plugins/gradle-build-script.git"))
}