Merge remote-tracking branch 'origin/master' into kotlin-experiments

This commit is contained in:
Gary Tierney
2018-08-23 00:22:16 +01:00
4 changed files with 43 additions and 3 deletions
+11 -1
View File
@@ -10,4 +10,14 @@ dependencies {
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: bouncycastleVersion
testImplementation group: 'junit', name: 'junit', version: junitVersion
}
}
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
}