Forgelin/README.md

25 lines
719 B
Markdown
Raw Normal View History

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 {
jcenter()
2016-08-06 14:40:14 +00:00
maven {
2016-11-18 22:58:15 +00:00
url "http://mvn.rx14.co.uk/shadowfacts/"
2016-08-06 14:40:14 +00:00
}
}
dependencies {
compile group: "net.shadowfacts", name: "Forgelin", version: "LATEST_VERSION"
}
```
2016-08-06 14:47:01 +00:00
All versions can be seen [here](http://mvn.rx14.co.uk/shadowfacts/net/shadowfacts/Forgelin/).
**Note:** You must have the `jcenter()` call in your `repositories` block. JCenter is used to host the Kotlin coroutines libraries.