Changed up testing, updated Kotlin version

This commit is contained in:
anthony.cicchetti 2018-04-04 15:26:58 -04:00
parent 5a2d7a88c7
commit 9c92e1a9f8
3 changed files with 8 additions and 11 deletions

View file

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.2.21' ext.kotlin_version = '1.2.31'
repositories { repositories {
google() google()
jcenter() jcenter()
@ -9,7 +9,6 @@ buildscript {
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.1.0' classpath 'com.android.tools.build:gradle:3.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.junit.platform:junit-platform-gradle-plugin:+"
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
@ -22,14 +21,13 @@ allprojects {
jcenter() jcenter()
} }
ext.kotlin_version = '1.2.21' ext.kotlin_version = '1.2.31'
} }
subprojects.findAll { it.name.equalsIgnoreCase("common") or it.name.equalsIgnoreCase("server")}.each { p -> subprojects.findAll { it.name.equalsIgnoreCase("common") or it.name.equalsIgnoreCase("server")}.each { p ->
configure(p) { configure(p) {
apply plugin: 'kotlin' apply plugin: 'kotlin'
apply plugin: 'org.junit.platform.gradle.plugin'
dependencies { dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"){ implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"){
because 'This is the latest version of kotlin?' because 'This is the latest version of kotlin?'
@ -39,12 +37,12 @@ subprojects.findAll { it.name.equalsIgnoreCase("common") or it.name.equalsIgnore
because 'This is required by Jackson' because 'This is required by Jackson'
} }
testImplementation 'org.junit.jupiter:junit-jupiter-api:+' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:+' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
} }
junitPlatform { test {
details 'tree' useJUnitPlatform()
} }
} }
} }

View file

@ -18,7 +18,7 @@ repositories {
} }
dependencies { dependencies {
api 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.+' api 'com.fasterxml.jackson.module:jackson-module-kotlin:2.9.5'
} }
compileKotlin { compileKotlin {

View file

@ -4,7 +4,6 @@ buildscript {
} }
dependencies { dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.junit.platform:junit-platform-gradle-plugin:+"
} }
} }