-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
110 lines (94 loc) · 2.68 KB
/
build.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
config {
info {
description = 'Redis Smart Cache'
inceptionYear = '2022'
tags = ['redis', 'caching', 'jdbc']
links {
website = "https://github.com/redis-field-engineering/${project.rootProject.name}"
issueTracker = "https://github.com/redis-field-engineering/${project.rootProject.name}/issues"
scm = "https://github.com/redis-field-engineering/${project.rootProject.name}.git"
}
scm {
url = "https://github.com/redis-field-engineering/${project.rootProject.name}"
connection = "scm:git:https://github.com/redis-field-engineering/${project.rootProject.name}.git"
developerConnection = "scm:git:[email protected]:redis-field-engineering/${project.rootProject.name}.git"
}
specification {
enabled = true
}
implementation {
enabled = true
}
people {
person {
id = 'jruaux'
name = 'Julien Ruaux'
roles = ['developer', 'author']
}
}
}
docs {
javadoc {
options {
autoLinks {
enabled = false
}
}
aggregate {
enabled = false
}
}
}
licensing {
enabled = false
licenses {
license {
id = 'MIT'
}
}
}
coverage {
jacoco {
enabled = true
toolVersion = jacocoVersion
}
}
}
allprojects {
repositories {
mavenLocal()
gradlePluginPortal()
}
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}
subprojects {
config {
info {
description = project.project_description
}
coverage {
jacoco {
toolVersion = jacocoVersion
}
}
}
license {
exclude('build/**')
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation group: 'com.redis', name: 'testcontainers-redis', version: testcontainersRedisVersion
}
test {
useJUnitPlatform()
}
}