2016-08-06 14:40:14 +00:00
|
|
|
# Forgelin
|
2016-11-14 15:53:45 +00:00
|
|
|
Fork of [Emberwalker's Forgelin](https://github.com/Emberwalker/Forgelin).
|
2016-08-06 14:40:14 +00:00
|
|
|
|
|
|
|
## Additions
|
2016-11-14 15:53:45 +00:00
|
|
|
- Shades the Kotlin standard library, runtime, and reflect libraries so you don't have to.
|
|
|
|
- Provides a Forge `ILanguageAdapter` for using Kotlin `object` classes as your main mod class.
|
2016-08-06 14:40:14 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
```groovy
|
|
|
|
repositories {
|
2017-06-11 20:19:39 +00:00
|
|
|
jcenter()
|
2016-08-06 14:40:14 +00:00
|
|
|
maven {
|
2017-06-29 20:46:05 +00:00
|
|
|
url "http://maven.shadowfacts.net/"
|
2016-08-06 14:40:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile group: "net.shadowfacts", name: "Forgelin", version: "LATEST_VERSION"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-06-29 20:46:05 +00:00
|
|
|
All versions can be seen [here](http://maven.shadowfacts.net/net/shadowfacts/Forgelin/).
|
2017-06-11 20:19:39 +00:00
|
|
|
|
|
|
|
**Note:** You must have the `jcenter()` call in your `repositories` block. JCenter is used to host the Kotlin coroutines libraries.
|