Skip to content

Instantly share code, notes, and snippets.

@LemmaEOF
Created October 30, 2017 03:48
Show Gist options
  • Save LemmaEOF/9a46a36344b0243e366ae6f9ec309577 to your computer and use it in GitHub Desktop.
Save LemmaEOF/9a46a36344b0243e366ae6f9ec309577 to your computer and use it in GitHub Desktop.
// 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