Skip to content
This repository has been archived by the owner on Jun 12, 2018. It is now read-only.

Commit

Permalink
Version bump and kill coremod
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony Anderson <[email protected]>
  • Loading branch information
0xilly committed Jun 18, 2017
1 parent 5905e81 commit b95ac6c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
12 changes: 1 addition & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,6 @@ dependencies {

}

jar {
manifest {
attributes "FMLCorePlugin": "io.github.illyohs.scorg.preloader.ScorgPlugin",
"FMLCorePluginContainsFMLMod": "true"
}
}

shadowJar {
classifier = ""
dependencies {
Expand All @@ -77,10 +70,7 @@ shadowJar {
include(dependency('org.scala-lang.modules:scala-java8-compat_2.12:0.8.0'))
include(dependency('org.scala-lang:scala-reflect:2.12.2'))
}
manifest {
attributes "FMLCorePlugin": "io.github.illyohs.scorg.preloader.ScorgPlugin",
"FMLCorePluginContainsFMLMod": "true"
}

}


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modGroup=io.github.illyohs
modVersion=1.0
modVersion=1.0.1
modBaseName=Scorg
forgeVersion=1.12-14.21.0.2322
mcpVersion=snapshot_20170614
12 changes: 10 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@ include `modLanguageAdapter = "io.github.illyohs.scorg.ScalaAdapter"` in your @M
## Maven repo

```
TBD
```
repositories {
mavenCentral()
}
dependencies {
compile 'com.github.illyohs:Scorg:@VERSION@'
}
```

[![](https://jitpack.io/v/illyohs/Scorg.svg)](https://jitpack.io/#illyohs/Scorg)
2 changes: 1 addition & 1 deletion src/main/scala/io/github/illyohs/scorg/Scorg.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ package io.github.illyohs.scorg

import net.minecraftforge.fml.common.Mod

@Mod(name = "Scorg", modid = "scorg", version = "1.0.0", modLanguageAdapter = "io.github.illyohs.scorg.ScalaAdapter")
@Mod(name = "Scorg", modid = "scorg", version = "1.0.1", modLanguageAdapter = "io.github.illyohs.scorg.ScalaAdapter")
object Scorg

0 comments on commit b95ac6c

Please sign in to comment.