Skip to content

Commit

Permalink
0.14.0-alpha.14
Browse files Browse the repository at this point in the history
Fixes stdlib library classes not being recognized in Java project Thanks @vinsmain for report
  • Loading branch information
doorbash committed Oct 9, 2020
1 parent 31b3f80 commit 2f926b4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Implementation of Colyseus client using Kotlin

```groovy
dependencies {
implementation 'io.github.doorbash:colyseus-kotlin:0.14.0-alpha.10'
implementation 'io.github.doorbash:colyseus-kotlin:0.14.0-alpha.14'
}
```

Expand Down
19 changes: 8 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
buildscript {
ext.kotlin_version = '1.4.+'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.9'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}

Expand All @@ -18,27 +17,25 @@ apply plugin: 'com.novoda.bintray-release'
apply plugin: 'kotlin'

group 'io.github.doorbash'
version '0.14.0-alpha.10'
version '0.14.0-alpha.14'

repositories {
mavenCentral()
}

dependencies {
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"

implementation 'org.java-websocket:Java-WebSocket:1.5.1'
implementation 'org.msgpack:jackson-dataformat-msgpack:0.8.20'
// implementation 'org.slf4j:slf4j-simple:1.6.2'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9"
// implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "org.java-websocket:Java-WebSocket:$javaWebsocketVersion"
implementation "org.msgpack:jackson-dataformat-msgpack:$msgpackVersion"
apiElements "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
}

publish {
def groupProjectID = 'io.github.doorbash'
def artifactProjectID = 'colyseus-kotlin'
def publishVersionID = '0.14.0-alpha.10'
def publishVersionID = '0.14.0-alpha.14'
userOrg = 'doorbash'
repoName = 'io.github.doorbash'
groupId = groupProjectID
Expand Down

0 comments on commit 2f926b4

Please sign in to comment.