Compare commits

...

7 Commits

Author SHA1 Message Date
Shadowfacts 7e582d39ee
Update Kotlin and Coroutines 2019-09-13 16:27:57 -04:00
Shadowfacts 09bd973e77
Fix kotlin-stdlib-jdk7/8 not being shadowed 2019-09-13 16:21:17 -04:00
NikkyAI 85b8fd917b update to 1.3.40 (#60)
* update to 1.3.40-eap

skipped current stable (1.3.31) because of https://youtrack.jetbrains.com/issue/KT-30132

* update to 1.3.40
2019-06-19 15:17:04 -04:00
Shadowfacts 7aa0a3ef37
Bump version 2018-11-24 13:40:33 -05:00
Shadowfacts 1342a6f5a6
Update to Kotlin 1.3.10, Coroutines 1.0.1, and bump version
Closes #48
2018-11-23 21:14:22 -05:00
Shadowfacts b18b818f64
Bump version to 1.8.0 2018-10-30 19:24:05 -04:00
Shadowfacts 90c0276180
Update Kotlin to 1.3.0, Coroutines to 1.0.0
Closes #43
2018-10-30 19:20:59 -04:00
4 changed files with 9 additions and 6 deletions

View File

@ -2,7 +2,7 @@
Fork of [Emberwalker's Forgelin](https://github.com/Emberwalker/Forgelin).
## Additions
- Shades the Kotlin standard library, runtime, and reflect libraries so you don't have to.
- Shades the Kotlin standard library, runtime, coroutines-core, and reflect libraries so you don't have to.
- Provides a Forge `ILanguageAdapter` for using Kotlin `object` classes as your main mod class.
## Usage

View File

@ -57,6 +57,7 @@ repositories {
dependencies {
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib", version: kotlin_version
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk7", version: kotlin_version
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk8", version: kotlin_version
compile group: "org.jetbrains.kotlin", name: "kotlin-reflect", version: kotlin_version
compile group: "org.jetbrains", name: "annotations", version: annotations_version
@ -75,6 +76,8 @@ shadowJar {
classifier = ""
dependencies {
include(dependency("org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"))
include(dependency("org.jetbrains.kotlin:kotlin-stdlib-jdk7:${kotlin_version}"))
include(dependency("org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlin_version}"))
include(dependency("org.jetbrains.kotlin:kotlin-reflect:${kotlin_version}"))
include(dependency("org.jetbrains:annotations:${annotations_version}"))
include(dependency("org.jetbrains.kotlinx:kotlinx-coroutines-core:${coroutines_version}"))

View File

@ -1,4 +1,4 @@
mod_version = 1.7.4
mod_version = 1.8.4
group = net.shadowfacts
archivesBaseName = Forgelin
@ -6,6 +6,6 @@ mc_version = 1.12.2
mcp_mappings = snapshot_20180609
forge_version = 14.23.4.2705
kotlin_version = 1.2.41
annotations_version = 16.0.2
coroutines_version = 0.23.0
kotlin_version = 1.3.50
annotations_version = 16.0.3
coroutines_version = 1.3.1

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-bin.zip