-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
65 lines (52 loc) · 2.17 KB
/
build.gradle
File metadata and controls
65 lines (52 loc) · 2.17 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
plugins {
id 'groovy'
}
group 'io.github.segment11'
version '1.2-SNAPSHOT'
final String artifactId = 'segmentd'
repositories {
maven {
url 'https://maven.aliyun.com/nexus/content/groups/public/'
}
mavenCentral()
}
sourceSets {
main {
groovy {
srcDirs = ['src']
}
}
test {
groovy {
srcDirs = ['test']
}
}
}
sourceCompatibility = 21
targetCompatibility = 21
compileGroovy {
groovyOptions.configurationScript = file("config.groovy")
}
dependencies {
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36'
implementation group: 'org.apache.groovy', name: 'groovy', version: '4.0.12'
implementation group: 'org.apache.groovy', name: 'groovy-sql', version: '4.0.12'
implementation group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
implementation group: 'com.esotericsoftware', name: 'reflectasm', version: '1.11.9'
implementation group: 'com.alibaba', name: 'druid', version: '1.1.24'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.14.1'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.14.1'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.1'
implementation group: 'io.prometheus', name: 'simpleclient', version: '0.15.0'
testImplementation group: 'org.spockframework', name: 'spock-core', version: '2.3-groovy-4.0'
testImplementation group: 'com.h2database', name: 'h2', version: '1.4.200'
testImplementation group: 'mysql', name: 'mysql-connector-java', version: '5.1.49'
testImplementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.20.0'
testImplementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.20.0'
testImplementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.20.0'
testImplementation group: 'io.prometheus', name: 'simpleclient_httpserver', version: '0.15.0'
testImplementation group: 'com.github.kevinsawicki', name: 'http-request', version: '6.0'
}
test {
useJUnitPlatform()
}