-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (34 loc) · 871 Bytes
/
build.gradle
File metadata and controls
44 lines (34 loc) · 871 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
40
41
42
43
44
plugins {
id("idea")
id("java")
id("io.ebean") version "12.6.5"
}
repositories {
mavenLocal()
mavenCentral()
}
compileJava {
sourceCompatibility = '11'
targetCompatibility = '11'
}
//idea {
// module {
// sourceDirs += file("$projectDir/build/classes/java/main")
// generatedSourceDirs += file("$projectDir/build/classes/java/main")
// }
//}
dependencies {
annotationProcessor("io.ebean:querybean-generator:12.6.5")
implementation("org.avaje.composite:logback:1.1")
implementation("io.ebean:ebean:12.6.5")
implementation("io.ebean:ebean-querybean:12.6.5")
testImplementation("io.ebean:ebean-test:12.6.5")
testImplementation('org.avaje.composite:junit:1.1')
}
ebean {
debugLevel = 0 //0 - 9
}
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}