Created
October 30, 2017 03:48
-
-
Save LemmaEOF/9a46a36344b0243e366ae6f9ec309577 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See https://github.com/elytra/Skeleton/wiki for what all these values mean | |
ext { | |
group = 'com.elytradev' | |
projectName = 'Opaline' | |
useElytraVersionFormat = true | |
version = '1' | |
concreteVersion = '0.3.2-SNAPSHOT' | |
concreteModules = [ 'common' ] | |
coremod = null | |
miniVersion = null | |
language = 'java' | |
forge = '1.12.1-14.22.0.2474' | |
mappings = 'snapshot_20170908' | |
enforceLicenseHeaders = false | |
verbose = false | |
} | |
if (!ext.early) { | |
repositories { | |
// the skeleton already defines mavenCentral, jcenter, and the Elytra repo | |
// will also have Shadowfacts' maven if the language is set to kotlin | |
} | |
dependencies { | |
deobfCompile 'com.elytradev:concrete:0.3.2:common' | |
shadow 'com.elytradev:concrete:0.3.2:common' | |
deobfCompile 'com.elytradev:concrete:0.3.2:gui' | |
shadow 'com.elytradev:concrete:0.3.2:gui' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment