<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source> <!-- or higher, depending on your project -->
<target>1.8</target> <!-- or higher, depending on your project -->
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.linkki-framework.tooling</groupId>
<artifactId>linkki-apt</artifactId>
<version>${linkki.version}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</plugin>
linkki-apt
Installation
The best way to install linkki-apt is by using a build tool like Maven or Gradle.
Using Maven
To include linkki-apt in the compile process you need to add it as an annotation processor to the maven compiler plugin configuration:
Maven dependency
The maven-compiler-plugin needs to be used in a version >= 3.5.1
|