Disable maven publishing gradle plugins by default.

This commit is contained in:
iadgovuser29 2023-07-26 10:15:59 -04:00
parent 26a8993410
commit af28ac6df5
2 changed files with 10 additions and 4 deletions

View File

@ -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

View File

@ -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')