-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
66 lines (53 loc) · 1.43 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
plugins {
id("idea")
id("io.ebean") version "12.3.2"
id("org.jetbrains.kotlin.jvm") version "1.3.72"
id("org.jetbrains.kotlin.kapt") version "1.3.72"
}
group 'org.example'
version '1.0-SNAPSHOT'
//buildscript {
// repositories {
// mavenLocal()
// mavenCentral()
// }
// dependencies {
// classpath 'io.ebean:ebean-gradle-plugin:12.3.2'
// classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72'
// }
//}
//apply plugin: 'idea'
//apply plugin: 'io.ebean'
//apply plugin: 'org.jetbrains.kotlin.jvm'
//apply plugin: 'org.jetbrains.kotlin.kapt'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// use BOM
// implementation(platform("io.ebean:ebean-bom:1.1"))
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72"
implementation "org.slf4j:slf4j-api:1.7.25"
implementation "org.avaje.composite:logback:1.1"
implementation "io.ebean:ebean:12.3.2"
implementation "io.ebean:ebean-querybean:12.2.3"
implementation "org.postgresql:postgresql:42.2.8"
kapt "io.ebean:kotlin-querybean-generator:12.2.3"
testImplementation "io.ebean:ebean-test:12.3.2"
testImplementation "org.avaje.composite:junit:1.1"
testImplementation "org.jetbrains.kotlin:kotlin-test:1.3.72"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
ebean {
debugLevel = 1
}
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}