Forgelin/README.md

25 lines
726 B
Markdown
Raw Normal View History

2016-08-06 14:40:14 +00:00
# Forgelin
Fork of [Emberwalker's Forgelin](https://github.com/Emberwalker/Forgelin).
2016-08-06 14:40:14 +00:00
## Additions
- Shades the Kotlin standard library, runtime, coroutines-core, and reflect libraries so you don't have to.
2016-11-14 15:53:45 +00:00
- 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()
maven {
url "http://maven.shadowfacts.net/"
}
2016-08-06 14:40:14 +00:00
}
dependencies {
compile group: "net.shadowfacts", name: "Forgelin", version: "LATEST_VERSION"
2016-08-06 14:40:14 +00:00
}
```
All versions can be seen [here](http://maven.shadowfacts.net/net/shadowfacts/Forgelin/).
**Note:** You must have the `jcenter()` call in your `repositories` block. JCenter is used to host the Kotlin coroutines libraries.