-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (32 loc) · 870 Bytes
/
build.gradle
File metadata and controls
39 lines (32 loc) · 870 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
39
buildscript {
ext {
repos = {
gradlePluginPortal()
mavenLocal()
mavenCentral()
}
eventStoreVersion = '0.0.7'
jacksonVersion = '2.12.1'
lombokVersion = '1.18.16'
}
}
plugins {
id 'java'
id 'idea'
id 'checkstyle'
id 'jacoco'
id 'groovy'
}
group = 'com.hltech'
repositories(repos)
apply from: 'gradle/test.gradle'
apply from: 'gradle/codequality.gradle'
sourceCompatibility = 11
targetCompatibility = 11
dependencies {
implementation "com.hltech:sql-event-store-4j:$eventStoreVersion"
implementation "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
/* LOMBOK - generate additional bytecode during compilation*/
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
}