From 003ee6d121b6fcee38573e91fb331063d38e7255 Mon Sep 17 00:00:00 2001 From: Milad Doorbash Date: Fri, 16 Apr 2021 01:24:21 +0430 Subject: [PATCH] Fix #14 version 0.14.5 --- README.md | 2 +- build.gradle | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/README.md b/README.md index d79acf7..265fcc6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ repositories { } dependencies { - implementation 'io.github.doorbash:colyseus-kotlin:0.14.4' + implementation 'com.github.doorbash:colyseus-kotlin:0.14.5' } ``` diff --git a/build.gradle b/build.gradle index 49c8088..1bc32d4 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,6 @@ buildscript { jcenter() } dependencies { - classpath 'com.novoda:bintray-release:0.9' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32" } } @@ -13,7 +12,6 @@ plugins { id 'java' } -apply plugin: 'com.novoda.bintray-release' apply plugin: 'kotlin' repositories { @@ -29,19 +27,6 @@ dependencies { implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3" } -publish { - def groupProjectID = 'io.github.doorbash' - def artifactProjectID = 'colyseus-kotlin' - def publishVersionID = '0.14.4' - userOrg = 'doorbash' - repoName = 'io.github.doorbash' - groupId = groupProjectID - artifactId = artifactProjectID - publishVersion = publishVersionID - desc = 'Colyseus Client for Kotlin' - website = 'https://github.com/doorbash/colyseus-kotlin' -} - task runExampleJava(dependsOn: classes, type: JavaExec) { main = "io.colyseus.example.java.Main" classpath = sourceSets.main.runtimeClasspath