From 0984e6dbfc79041f8d8f06bdca3a875deccc6ca1 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Wed, 24 Jul 2019 21:53:35 -0700 Subject: [PATCH] Install source JAR when running install target --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 282ce61d735f..fe08286d0494 100644 --- a/build.gradle +++ b/build.gradle @@ -64,6 +64,10 @@ subprojects { apply plugin: 'maven' // make pom files for deployment apply plugin: 'nebula.maven-base-publish' + artifacts { + archives sourceJar + } + compileJava { options.encoding = "UTF-8" }