-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (42 loc) · 1.44 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
buildscript {
ext.junitVersion = "5.4.1"
ext.junitPlatformVersion = "1.4.1"
}
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin on the JVM.
id "org.jetbrains.kotlin.jvm" version "1.3.21"
// Apply the application plugin to add support for building a CLI application.
id "application"
// Generate IntelliJ IDEA project files
id "idea"
}
version "0.0.1"
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1"
testRuntime("org.junit.platform:junit-platform-launcher:$junitPlatformVersion")
testCompile("org.junit.jupiter:junit-jupiter-api:$junitVersion")
testRuntime("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
testRuntime("org.junit.vintage:junit-vintage-engine:$junitVersion")
implementation "net.java.dev.jna:jna:5.0.0"
implementation "net.java.dev.jna:jna-platform:5.0.0"
implementation project(path: ":common")
implementation project(path: ":stack")
implementation project(path: ":sockslib")
}
allprojects {
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
}
// Define the main class for the application.
mainClassName = "sssemil.com.bridge.MainKt"
kotlin.sourceSets.all {
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
}