-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (31 loc) · 888 Bytes
/
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
plugins {
id 'scala'
id 'idea'
id 'application'
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
mainClassName = 'inquisitor.Inquisitor'
version = '0.2.1-BETA-SNAPSHOT'
compileScala{
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
options.compilerArgs = ['-unchecked', '-deprecation', '-feature']
}
dependencies {
implementation 'org.scala-lang:scala-library:2.11.12'
implementation 'com.typesafe.slick:slick_2.11:3.2.0'
implementation 'com.lucidchart:xtract_2.11:1.1.1'
implementation 'com.typesafe.scala-logging:scala-logging_2.11:3.5.0'
implementation 'com.github.scopt:scopt_2.11:3.5.0'
runtimeOnly 'org.slf4j:slf4j-simple:1.7.24'
runtimeOnly 'org.xerial:sqlite-jdbc:3.16.1'
}
repositories {
mavenCentral()
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}