Skip to content

Commit

Permalink
Concrete networking (barely tested), A bunch of really experimental t…
Browse files Browse the repository at this point in the history
…hings that I'm working on. Please don't touch them they're shy.
  • Loading branch information
darkevilmac committed Feb 9, 2017
1 parent 454109e commit f8bb558
Show file tree
Hide file tree
Showing 19 changed files with 3,405 additions and 271 deletions.
11 changes: 5 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

minecraft {
version = "1.11-13.19.1.2188"
version = "1.11-13.19.1.2199"
runDir = "run"

def replacementVersion = 'MOD_VERSION = \"' + project.version + '\"'

replace("MOD_VERSION = \"@MOVINGWORLDVER@\"",
replacementVersion)

mappings = "snapshot_20161202"
mappings = "snapshot_20170201"
}

mixin {
Expand All @@ -62,17 +62,16 @@ dependencies {
exclude module: 'guava'
}

compile 'com.unascribed:lambdanetwork:1.0.0'
shadow 'com.unascribed:lambdanetwork:1.0.0'
compile 'io.github.elytra:concrete:0.0.6'
shadow 'io.github.elytra:concrete:0.0.6'
}

shadowJar {
exclude 'dummyThing'

relocate 'com.unascribed.lambdanetwork', "io.github.elytra.movingworld.repackage.com.unascribed.lambdanetwork"
relocate 'io.github.elytraconcrete', "io.github.elytra.movingworld.repackage.io.github.elytra.concrete"

This comment has been minimized.

Copy link
@unascribed

unascribed Feb 9, 2017

Missing a period. This will crash in an obf environment.

dependencies {
include(dependency('org.spongepowered:mixin'))
include(dependency('com.unascribed:lambdanetwork'))
}

classifier = 'full'
Expand Down
Loading

0 comments on commit f8bb558

Please sign in to comment.