init kotlin project

This commit is contained in:
Raffaele Mignone 2019-03-10 17:43:08 +01:00
parent 2aa26df7e5
commit 0106fd9866
Signed by: norangebit
GPG Key ID: F5255658CB220573
170 changed files with 850 additions and 0 deletions

1
.gitignore vendored
View File

@ -101,6 +101,7 @@ modules.xml
# Package Files #
*.jar
!gradle/**/*.jar
*.war
*.nar
*.ear

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

Binary file not shown.

View File

@ -0,0 +1,2 @@
#Sun Mar 10 15:15:32 CET 2019
gradle.version=4.10

Binary file not shown.

View File

30
build.gradle.kts Normal file
View File

@ -0,0 +1,30 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.3.21"
}
group = "norangebit"
version = "0.0.1"
val arrowVersion = "0.8.2"
val kluentVersion = "1.48"
val koinVersion = "1.0.2"
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("io.arrow-kt:arrow-core:$arrowVersion")
implementation("org.koin:koin-core:$koinVersion")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.1.0")
testImplementation("org.amshove.kluent:kluent:$kluentVersion")
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}

Binary file not shown.

View File

@ -0,0 +1,2 @@
4
0

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More