Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Releases: palantir/gradle-processors

2.2.0

07 Mar 17:18
fd8ed30
Compare
Choose a tag to compare

Don't configure jacoco to exclude generated files in gradle 5+ (#107)

The logic doesn't work in gradle 5 anymore, so we're turning it off for now.
If there is a need for this in the future, we can look at re-implementing the logic, although gradle 5.2+ now writes generated sources into a separate directory, so from that point on it might be a lot easier to just exclude compileOptions.annotationProcessorGeneratedSourcesDirectory.

2.1.0

12 Nov 15:39
Compare
Choose a tag to compare

[improvement] Configure annotation processor classpath explicitly in IDEA (#97)

gradle-processors v2.0.0

16 Oct 19:24
345dbd7
Compare
Choose a tag to compare
  • [break] Stop making compileOnly extend annotationProcessor (#91)

gradle-processors v1.4.0

12 Oct 16:43
fe91df5
Compare
Choose a tag to compare

Stop manipulating .idea/compiler.xml when importing from IDEA (#90)

Motivation

If importing from IntelliJ, the annotation processor needs to be configured differently based on whether you're importing using 'separate source sets' or not. The plugin only worked in the former case.

In order to avoid further complexity to make both cases work, we've decided to remove that logic altogether. The plugin now only supports out-of-the-box configuration when calling ./gradlew idea.

gradle-processors v1.3.0

04 Oct 19:02
660503f
Compare
Choose a tag to compare

Rely on gradle 4.6+ annotationProcessor logic if that configuration exists (#83)

gradle-processors v1.2.18

05 Sep 17:58
Compare
Choose a tag to compare

Only modify configuration once java plugin has been applied (#82)

gradle-processors v1.2.17

05 Sep 16:07
15b7b90
Compare
Choose a tag to compare
  • [fix] compatibility with Gradle 4.6's annotationProcessor configuration (#81)

gradle-processors v1.2.16

21 Jul 22:52
b27d725
Compare
Choose a tag to compare
#80 Lazily create processorPath tasks

gradle-processors v1.2.15

11 Aug 11:56
Compare
Choose a tag to compare

This release will now only modify IDEA's .idea/compiler.xml file if Gradle is run from within IDEA itself

gradle-processors v1.2.14

08 Aug 11:28
Compare
Choose a tag to compare

This release fixes a path escaping issue on Windows