Created
August 8, 2014 11:46
-
-
Save kareblak/db44c2a80c2905c1a3bd 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
useGpg := true | |
appAssemblerSettings | |
appOutput in App := target.value / "appmgr" / "root" | |
appmgrSettings | |
appmgrOutputFile in Appmgr := target.value / "%s-appmgr.zip".format(name.value) | |
appmgrBuild <<= appmgrBuild.dependsOn(appAssemble) | |
clean <<= clean.dependsOn(clean in App) | |
aetherArtifact <<= (aetherArtifact, appmgrBuild) map { (art, file) => | |
art.attach(file, "appmgr", "zip") | |
} | |
appAssemblerSettings | |
appmgrSettings | |
aetherPublishSignedSettings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment