From c985a9536f29eccc56b791059f8713517c2a91b7 Mon Sep 17 00:00:00 2001 From: Rsl1122 Date: Thu, 20 Dec 2018 12:47:30 +0200 Subject: [PATCH] Added IntelliJ IDEA annotation configuration plugin to gradle --- Plan/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Plan/build.gradle b/Plan/build.gradle index 4f01528d2..d2e9f1e90 100644 --- a/Plan/build.gradle +++ b/Plan/build.gradle @@ -3,6 +3,7 @@ plugins { id "jacoco" id "org.sonarqube" version "2.6.2" id "net.ltgt.apt" version "0.19" + id "net.ltgt.apt-idea" version "0.19" id "com.github.johnrengelman.shadow" version "4.0.2" } @@ -17,6 +18,7 @@ subprojects { apply plugin: "java" apply plugin: "maven" apply plugin: "net.ltgt.apt" + apply plugin: "net.ltgt.apt-idea" apply plugin: "com.github.johnrengelman.shadow" apply plugin: "jacoco"