-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathbuild.gradle
More file actions
118 lines (99 loc) · 3.2 KB
/
build.gradle
File metadata and controls
118 lines (99 loc) · 3.2 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
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
111
112
113
114
115
116
117
118
config {
info {
description = 'LettuceMod'
inceptionYear = '2020'
vendor = 'Redis'
tags = ['redis', 'modules', 'stack', 'java', 'client', 'spring']
links {
website = "https://github.com/redis/${project.rootProject.name}"
issueTracker = "https://github.com/redis/${project.rootProject.name}/issues"
scm = "https://github.com/redis/${project.rootProject.name}.git"
}
scm {
url = "https://github.com/redis/${project.rootProject.name}"
connection = "scm:git:https://github.com/redis/${project.rootProject.name}.git"
developerConnection = "scm:git:git@github.com:redis/${project.rootProject.name}.git"
}
specification {
enabled = true
}
implementation {
enabled = true
}
people {
clearDomainSet()
person {
id = 'jruaux'
name = 'Julien Ruaux'
roles = ['developer', 'author']
}
}
}
docs {
javadoc {
autoLinks {
enabled = false
}
}
}
licensing {
enabled = false
licenses {
license {
id = 'Apache-2.0'
}
}
}
coverage {
jacoco {
enabled = true
toolVersion = jacocoPluginVersion
}
}
testing {
jar = true
}
}
allprojects {
repositories {
mavenLocal()
gradlePluginPortal()
}
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
ext['lettuce.version'] = lettuceVersion
}
subprojects {
config {
info {
description = project.project_description
}
coverage {
jacoco {
toolVersion = jacocoPluginVersion
}
}
}
license {
exclude('build/**')
}
dependencies {
compileOnly group: 'org.projectlombok', name: 'lombok', version: lombokVersion
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombokVersion
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: junitVersion
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: junitVersion
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: junitVersion
testImplementation group: 'org.junit.platform', name: 'junit-platform-launcher', version: junitPlatformVersion
testImplementation group: 'org.testcontainers', name: 'junit-jupiter', version: testcontainersVersion
testImplementation group: 'org.awaitility', name: 'awaitility', version: awaitilityVersion
testImplementation group: 'com.redis', name: 'testcontainers-redis', version: testcontainersRedisVersion
testImplementation group: 'com.redis', name: 'testcontainers-redis-enterprise', version: testcontainersRedisVersion
}
test {
useJUnitPlatform()
}
}