From 01ab33508177064601b13492c259335780e9866d Mon Sep 17 00:00:00 2001 From: Brice Dutheil Date: Sun, 7 Feb 2021 14:13:16 +0100 Subject: [PATCH 1/2] HTTPS is now required on the repositories --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dce8d4ff0..b480fc525 100644 --- a/pom.xml +++ b/pom.xml @@ -692,7 +692,7 @@ maven central Maven Plugin Repository - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 default true @@ -703,7 +703,7 @@ central Maven Plugin Repository - http://repo1.maven.org/maven2 + https://repo1.maven.org/maven2 default false From da757424507bcdb02361bf8fd59e03a1a0046275 Mon Sep 17 00:00:00 2001 From: Brice Dutheil Date: Sun, 7 Feb 2021 15:53:13 +0100 Subject: [PATCH 2/2] Enable incremental annotation processing on Gradle There's a few constraints that are mentioned on the gradle doc where annotation processors must abide in order to profit from incremental annotation processing, thanks to the current code and best practice the current processor seems to be within the supported scope. https://docs.gradle.org/current/userguide/java_plugin.html#sec:incremental_annotation_processing --- .../resources/META-INF/gradle/incremental.annotation.processors | 1 + 1 file changed, 1 insertion(+) create mode 100644 achilles-core/src/main/resources/META-INF/gradle/incremental.annotation.processors diff --git a/achilles-core/src/main/resources/META-INF/gradle/incremental.annotation.processors b/achilles-core/src/main/resources/META-INF/gradle/incremental.annotation.processors new file mode 100644 index 000000000..c5d9024d1 --- /dev/null +++ b/achilles-core/src/main/resources/META-INF/gradle/incremental.annotation.processors @@ -0,0 +1 @@ +info.archinnov.achilles.internals.apt.processors.meta.AchillesProcessor,isolating \ No newline at end of file