-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (29 loc) · 835 Bytes
/
build.gradle
File metadata and controls
34 lines (29 loc) · 835 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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
id 'org.javamodularity.moduleplugin' version '1.6.0'
}
group 'xyz.vgdc'
version '1.0'
sourceCompatibility = 11
repositories {
mavenLocal()
maven{
url = "https://lightningcreations.github.io/Maven"
}
jcenter()
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'github.chorman0773.sentry', name: 'core', version: "[1.1,2.0)"
compile group: 'github.chorman0773.sentry', name: 'launch', version: "[1.1,2.0)"
compile group: 'github.chorman0773.sentry', name: 'test', version: "[1.1,2.0)"
}
compileKotlin {
kotlinOptions.jvmTarget = 11
}
compileTestKotlin {
kotlinOptions.jvmTarget = 11
}