From 3a855e1c44ed20426cd6280b010b3ab8810c4d55 Mon Sep 17 00:00:00 2001 From: Wyatt Childers Date: Wed, 1 Jan 2020 22:45:13 -0500 Subject: [PATCH] Generate more sane argument names --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 1cd42a5..00fab89 100644 --- a/build.gradle +++ b/build.gradle @@ -84,6 +84,10 @@ dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' } +tasks.withType(JavaCompile).configureEach { + it.options.compilerArgs.add("-Aarg.name.key.prefix=") +} + task sourcesJar(type: Jar, dependsOn: classes) { classifier = 'sources' from sourceSets.main.allSource