-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
67 lines (52 loc) · 1.62 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
67
plugins {
id "org.jetbrains.kotlin.jvm" version "1.3.21"
id "com.github.johnrengelman.shadow" version "5.0.0"
}
apply from: file("${rootProject.projectDir}/ktlint.gradle")
group "org.droidmate"
version "1.0-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
maven { url "https://jitpack.io" }
}
apply plugin: "java"
task sourcesJar(type: Jar, dependsOn: "classes") {
classifier = "sources"
from sourceSets.main.allJava
from sourceSets.main.allSource
from sourceSets.test.allSource
}
apply plugin: "application"
application {
applicationDefaultJvmArgs = [/*"-ea",*/"-Dlogback.configurationFile=default-logback.xml"]
mainClassName = "org.droidmate.droidgram.ExperimentMain"
}
jar {
manifest {
attributes "Main-Class": "org.droidmate.droidgram.ExperimentMain"
}
}
apply plugin: "maven"
artifacts {
archives sourcesJar
}
dependencies {
testImplementation("junit:junit:4.12")
testImplementation("org.jetbrains.kotlin:kotlin-test:1.3.21")
implementation("org.slf4j:slf4j-api:1.7.25")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.0")
implementation("org.json:json:20160212")
implementation("com.google.code.gson:gson:2.8.0")
// compile("org.droidmate:droidmate-2:2.0.0")
compile("com.github.hotzkow:explorationModel")
compile ("com.github.uds-se.droidmate:droidmate-2:master-SNAPSHOT")
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}