From af28ac6df5745f127d8f7737ae23f11e4599a7f0 Mon Sep 17 00:00:00 2001 From: iadgovuser29 <33426478+iadgovuser29@users.noreply.github.com> Date: Wed, 26 Jul 2023 10:15:59 -0400 Subject: [PATCH] Disable maven publishing gradle plugins by default. --- HIRS_Structs/build.gradle | 7 +++++-- HIRS_Utils/build.gradle | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/HIRS_Structs/build.gradle b/HIRS_Structs/build.gradle index bcd27c0e..ddb27f5a 100644 --- a/HIRS_Structs/build.gradle +++ b/HIRS_Structs/build.gradle @@ -1,7 +1,10 @@ apply plugin: 'java' apply plugin: 'checkstyle' -apply plugin: 'maven' -apply plugin: 'signing' +// DONT DELETE the next two plugins, maven and signing. +// They're used for maven publishing. +// But can cause build issues if certain gradle.properties are not set. +//apply plugin: 'maven' +//apply plugin: 'signing' sourceCompatibility = 1.8 diff --git a/HIRS_Utils/build.gradle b/HIRS_Utils/build.gradle index 9167386b..5d8ec36d 100644 --- a/HIRS_Utils/build.gradle +++ b/HIRS_Utils/build.gradle @@ -4,8 +4,11 @@ apply plugin: 'findbugs' apply plugin: 'java' apply plugin: 'jacoco' apply plugin: 'pmd' -apply plugin: 'maven' -apply plugin: 'signing' +// DONT DELETE the next two plugins, maven and signing. +// They're used for maven publishing. +// But can cause build issues if certain gradle.properties are not set. +//apply plugin: 'maven' +//apply plugin: 'signing' ext.configDir = new File(projectDir, 'config')