Dependencies and syntax updates.
This commit is contained in:
parent
2cbea71c6f
commit
ebc945badc
24 changed files with 367 additions and 332 deletions
|
@ -1,7 +1,7 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'application'
|
||||
id "net.thauvin.erik.gradle.semver" version "0.9.8-beta"
|
||||
id 'net.thauvin.erik.gradle.semver' version '0.9.8-beta'
|
||||
}
|
||||
|
||||
// ./gradlew
|
||||
|
|
|
@ -16,7 +16,7 @@ public final class GeneratedVersion {
|
|||
public final static String BUILDMETA_PREFIX = "+";
|
||||
|
||||
public final static String PROJECT = "";
|
||||
public final static Date BUILDDATE = new Date(1531208748879L);
|
||||
public final static Date BUILDDATE = new Date(1543552509400L);
|
||||
public final static int MAJOR = 2;
|
||||
public final static int MINOR = 1;
|
||||
public final static int PATCH = 2;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#Generated by the Semver Plugin for Gradle
|
||||
#Tue Nov 27 19:16:37 PST 2018
|
||||
#Thu Nov 29 20:38:43 PST 2018
|
||||
version.buildmeta=
|
||||
version.major=2
|
||||
version.minor=1
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
plugins {
|
||||
kotlin("jvm") version "1.3.0"
|
||||
kotlin("jvm").version("1.3.0")
|
||||
application
|
||||
id("org.jetbrains.kotlin.kapt") version "1.3.0"
|
||||
id("net.thauvin.erik.gradle.semver") version "0.9.8-beta"
|
||||
id("org.jetbrains.kotlin.kapt").version("1.3.0")
|
||||
id("net.thauvin.erik.gradle.semver").version("0.9.8-beta")
|
||||
}
|
||||
|
||||
// ./gradlew
|
||||
|
@ -18,7 +18,7 @@ dependencies {
|
|||
kapt(semverProcessor)
|
||||
compileOnly(semverProcessor)
|
||||
|
||||
compile(kotlin("stdlib"))
|
||||
implementation(kotlin("stdlib"))
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#Generated by the Semver Plugin for Gradle
|
||||
#Tue Nov 27 19:16:46 PST 2018
|
||||
#Thu Nov 29 20:35:47 PST 2018
|
||||
version.buildmeta=
|
||||
version.major=11
|
||||
version.minor=2
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'application'
|
||||
id "net.thauvin.erik.gradle.semver" version "0.9.8-beta"
|
||||
id 'net.thauvin.erik.gradle.semver' version '0.9.8-beta'
|
||||
}
|
||||
|
||||
// ./gradlew
|
||||
|
@ -15,12 +15,8 @@ mainClassName = 'App'
|
|||
defaultTasks 'run'
|
||||
|
||||
dependencies {
|
||||
testImplementation(
|
||||
'org.junit.jupiter:junit-jupiter-api:5.2.0'
|
||||
)
|
||||
testRuntimeOnly(
|
||||
'org.junit.jupiter:junit-jupiter-engine:5.2.0'
|
||||
)
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
|
||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.2'
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#Generated by the Semver Plugin for Gradle
|
||||
#Tue Nov 27 19:16:10 PST 2018
|
||||
#Thu Nov 29 20:33:16 PST 2018
|
||||
version.buildmeta=20180713152249
|
||||
version.major=1
|
||||
version.minor=1
|
||||
|
|
|
@ -4,9 +4,9 @@ import java.time.LocalDateTime
|
|||
import java.time.format.DateTimeFormatter
|
||||
|
||||
plugins {
|
||||
kotlin("jvm") version "1.3.0"
|
||||
kotlin("jvm").version("1.3.0")
|
||||
application
|
||||
id("net.thauvin.erik.gradle.semver") version "0.9.8-beta"
|
||||
id("net.thauvin.erik.gradle.semver").version("0.9.8-beta")
|
||||
}
|
||||
|
||||
// ./gradlew
|
||||
|
@ -18,8 +18,8 @@ plugins {
|
|||
defaultTasks(ApplicationPlugin.TASK_RUN_NAME)
|
||||
|
||||
dependencies {
|
||||
compile(kotlin("stdlib"))
|
||||
testCompile("org.testng:testng:6.14.3")
|
||||
implementation(kotlin("stdlib"))
|
||||
testImplementation("org.testng:testng:6.14.3")
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue