From 85fe722f4cb7366078e1d9c02302c6c2bf0676d9 Mon Sep 17 00:00:00 2001 From: Thad House Date: Wed, 30 May 2018 23:24:00 -0700 Subject: [PATCH] Fixes JNI files not getting cleaned on rebuild (#1121) If a JNI file was added then removed without a clean (like a branch change) The symbol check would fail because extra headers wouldnt get removed. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7b109a7240..d644075b39 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { id "base" id 'edu.wpi.first.wpilib.versioning.WPILibVersioningPlugin' version '2.0' id 'edu.wpi.first.NativeUtils' version '1.6.7' - id "edu.wpi.first.GradleJni" version "0.1.5" + id "edu.wpi.first.GradleJni" version "0.2.2" id 'idea' id 'com.gradle.build-scan' version '1.13.1' }