Fixed generated source location.

This commit is contained in:
Erik C. Thauvin 2018-11-02 17:33:22 -07:00
parent 351ed6598a
commit 33beb8ad5f

View file

@ -195,7 +195,7 @@ The `GeneratedVersion` class will be automatically created in the `build/generat
In order to also incorporate the generated source code into the `source tree`, add the following to the very top of the `build.gradle` file:
```gradle
compileJava.options.annotationProcessorGeneratedSourcesDirectory = file("${projectDir}/src/generated")
compileJava.options.annotationProcessorGeneratedSourcesDirectory = file("${projectDir}/src/generated/java")
```
The `GeneratedVersion.java` file will now be located in `src/generated`.
@ -237,4 +237,4 @@ Please look at the [Kotlin example](https://github.com/ethauvin/semver/tree/mast
Incrementing the version is best left to your favorite build system. For a solution using Gradle, please have a look at the [__Semver Version Plugin for Gradle__](https://github.com/ethauvin/semver-gradle).
There are also full [examples](https://github.com/ethauvin/semver-gradle/tree/master/examples/annotation-processor) in both [Java](https://github.com/ethauvin/semver-gradle/tree/master/examples/annotation-processor/java) and [Kotlin](https://github.com/ethauvin/semver-gradle/tree/master/examples/annotation-processor) showing how to use both the plugin and annotation processor concurrently.
There are also full [examples](https://github.com/ethauvin/semver-gradle/tree/master/examples/annotation-processor) in both [Java](https://github.com/ethauvin/semver-gradle/tree/master/examples/annotation-processor/java) and [Kotlin](https://github.com/ethauvin/semver-gradle/tree/master/examples/annotation-processor) showing how to use both the plugin and annotation processor concurrently.