From 41d709ba28e04e6b671b9261ff00df718ecc1397 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 6 Nov 2017 12:44:29 -0800 Subject: [PATCH] Added source & target compatibility. --- .idea/misc.xml | 73 -------------------------------------------------- build.gradle | 7 +++-- 2 files changed, 5 insertions(+), 75 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index b4fe993..bc21c71 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,79 +1,6 @@ - - - - - - - - - Java - - - Portability issuesJava - - - - - Android - - - - - - - - - - commons-logging-api - - - - - - - - 1.8.x - - - - - - - - 1.8.x - - - - - - - - - - - - - - \ No newline at end of file diff --git a/build.gradle b/build.gradle index b6faab2..0be7c30 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.1.2' + ext.kotlin_version = '1.1.51' repositories { mavenCentral() } @@ -16,7 +16,10 @@ apply plugin: 'application' defaultTasks 'run' -def processorJar = "net.thauvin.erik:semver:1.0.0" +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + +def processorJar = "net.thauvin.erik:semver:1.0.1" mainClassName = 'com.example.Main'