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 35 36 37 38 39 40 41 42 43
|
From: =?utf-8?b?SsOpcsO0bWUgQ2hhcmFvdWk=?= <[email protected]>
Date: Sat, 23 Jul 2022 13:11:07 -0400
Subject: remove animalsniffer plugin
Forwarded: not-needed
---
build.gradle | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/build.gradle b/build.gradle
index 1c50c64..9d225ea 100644
--- a/build.gradle
b/build.gradle
@@ -14,10 14,6 @@ buildscript {
}
}
-plugins {
- id 'ru.vyarus.animalsniffer' version '1.5.3'
-}
-
apply from: 'version.gradle'
allprojects {
@@ -27,18 23,6 @@ allprojects {
apply plugin: 'jacoco'
apply plugin: 'checkstyle'
- // For non-cli modules enable android api compatibility check
- if (it.name.equals('sop-java')) {
- // animalsniffer
- apply plugin: 'ru.vyarus.animalsniffer'
- dependencies {
- signature "net.sf.androidscents.signature:android-api-level-${minAndroidSdk}:2.3.3_r2@signature"
- }
- animalsniffer {
- sourceSets = [sourceSets.main]
- }
- }
-
// Only generate jar for submodules
// https://stackoverflow.com/a/25445035
jar {
|