From b2d9580e981b2f04c033f25debd5d773eb3cdbd7 Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Wed, 19 Sep 2018 11:22:44 -0700 Subject: [PATCH] [SHIBUI-812] Just a little gradle cleanup. --- backend/build.gradle | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/backend/build.gradle b/backend/build.gradle index e8ec167ce..0eb96b365 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -77,6 +77,9 @@ dependencies { // TODO: figure out what this should really be runtimeOnly 'org.springframework.boot:spring-boot-starter-tomcat' + //Spring Configuration Annotation Processor - makes IntelliJ happy about @ConfigurationProperties + compileOnly "org.springframework.boot:spring-boot-configuration-processor" + // lucene deps ['core', 'analyzers-common', 'queryparser'].each { compile "org.apache.lucene:lucene-${it}:${project.'lucene.version'}" @@ -112,10 +115,6 @@ dependencies { //JSON schema generator testCompile 'com.kjetland:mbknor-jackson-jsonschema_2.12:1.0.29' testCompile 'javax.validation:validation-api:2.0.1.Final' - - //Configuration Annotation Processor - //This could go in the spring boot section above, but I wasn't sure about the compileOnly vs compile - compileOnly "org.springframework.boot:spring-boot-configuration-processor" } def generatedSrcDir = new File(buildDir, 'generated/src/main/java')