-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (41 loc) · 850 Bytes
/
build.gradle
File metadata and controls
52 lines (41 loc) · 850 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
45
46
47
48
49
50
51
52
group 'org.example'
version '1.1-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'io.ebean'
sourceCompatibility = 1.8
targetCompatibility = 1.8
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.ebean:ebean-gradle-plugin:11.5.3"
}
}
configurations {
apt
}
idea {
module {
sourceDirs += file("$projectDir/generated")
generatedSourceDirs += file("$projectDir/generated")
}
}
ebean {
debugLevel = 1
queryBeans = true
}
repositories {
mavenCentral()
}
dependencies {
compile 'io.ebean:ebean:11.9.1'
compile 'io.ebean:ebean-querybean:11.1.1'
compile 'ch.qos.logback:logback-classic:1.2.3'
compile 'com.h2database:h2:1.4.196'
testCompile 'junit:junit:4.12'
}
test {
testLogging.showStandardStreams = true
}