1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
From: =?utf-8?b?SsOpcsO0bWUgQ2hhcmFvdWk=?= <jerome@riseup.net>
Date: Wed, 20 Jul 2022 10:37:15 -0400
Subject: remove checkstyle plugin
Forwarded: not-needed
---
build.gradle | 7 -------
1 file changed, 7 deletions(-)
diff --git a/build.gradle b/build.gradle
index a260782..95cd262 100644
--- a/build.gradle
+++ b/build.gradle
@@ -20,7 +20,6 @@ allprojects {
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
- apply plugin: 'checkstyle'
// Only generate jar for submodules
// without this we would generate an empty pgpainless.jar for the project root
@@ -29,12 +28,6 @@ allprojects {
onlyIf { !sourceSets.main.allSource.files.isEmpty() }
}
-
- // checkstyle
- checkstyle {
- toolVersion = '8.18'
- }
-
group 'org.pgpainless'
description = "Simple to use OpenPGP API for Java based on Bouncycastle"
version = shortVersion
|