-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
61 lines (44 loc) · 1.27 KB
/
settings.gradle
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
pluginManagement {
plugins {
id 'org.asciidoctor.jvm.convert' version '3.3.2'
id 'com.diffplug.eclipse.apt' version '3.31.0'
id 'com.diffplug.eclipse.excludebuildfolder' version '3.31.0'
id 'com.diffplug.eclipse.resourcefilters' version '3.31.0'
id 'com.github.spotbugs' version '4.7.2'
id 'com.google.protobuf' version '0.8.17'
id "com.github.johnrengelman.shadow" version "6.1.0"
id "com.github.kt3k.coveralls" version "2.10.2"
id "com.google.osdetector" version "1.6.2"
id "com.google.protobuf" version "0.8.17"
id "me.champeau.gradle.japicmp" version "0.2.5"
id "me.champeau.gradle.jmh" version "0.5.2"
id "net.ltgt.errorprone" version "1.3.0"
}
repositories {
gradlePluginPortal()
google()
}
}
rootProject.name = 'astasis'
include('lib')
include('pump')
// ---
dependencyResolutionManagement {
defaultLibrariesExtensionName.set('astasisLibs')
versionCatalogs {
libs {
from(files("gradle/libs.versions.toml"))
}
}
repositories {
google() {
content {
includeGroupByRegex 'com\\.google\\..+'
}
}
mavenCentral() {
}
}
// do not allow project specific repos.
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}