Merge pull request #357 from kylestev/fix/add-rsa-gen-task

Add RSA key gen Gradle task
This commit is contained in:
Gary Tierney
2017-09-18 21:37:46 +01:00
committed by GitHub
+10
View File
@@ -1 +1,11 @@
description = 'Apollo Utilities'
task(genRsa, dependsOn: classes, type: JavaExec) {
def utilSubproject = project(':util')
def utilClasspath = utilSubproject.sourceSets.main.runtimeClasspath
main = 'org.apollo.util.tools.RsaKeyGenerator'
classpath = utilClasspath
jvmArgs = ['-Xmx1024M']
workingDir = project.rootDir
}