-
-
Save monkey-codes/7d52195f8699067b34373ed6938645f5 to your computer and use it in GitHub Desktop.
Compile time weaving with Kotlin compiler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| ... | |
| <properties> | |
| <java.version>11</java.version> | |
| <kotlin.version>1.3.71</kotlin.version> | |
| <aspectj.version>1.9.5</aspectj.version> | |
| </properties> | |
| ... | |
| <build> | |
| <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> | |
| <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> | |
| <plugins> | |
| ... | |
| <plugin> | |
| <groupId>org.jetbrains.kotlin</groupId> | |
| <artifactId>kotlin-maven-plugin</artifactId> | |
| <configuration> | |
| <args> | |
| <arg>-Xjsr305=strict</arg> | |
| </args> | |
| <compilerPlugins> | |
| <plugin>spring</plugin> | |
| </compilerPlugins> | |
| </configuration> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.jetbrains.kotlin</groupId> | |
| <artifactId>kotlin-maven-allopen</artifactId> | |
| <version>${kotlin.version}</version> | |
| </dependency> | |
| </dependencies> | |
| <executions> | |
| <execution> | |
| <id>kapt</id> | |
| <goals> | |
| <goal>kapt</goal> | |
| </goals> | |
| </execution> | |
| <execution> | |
| <id>compile</id> | |
| <goals> | |
| <goal>compile</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>com.jcabi</groupId> | |
| <artifactId>jcabi-maven-plugin</artifactId> | |
| <version>0.14.1</version> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>ajc</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.aspectj</groupId> | |
| <artifactId>aspectjtools</artifactId> | |
| <version>${aspectj.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.aspectj</groupId> | |
| <artifactId>aspectjweaver</artifactId> | |
| <version>${aspectj.version}</version> | |
| </dependency> | |
| </dependencies> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment