Annotation processor Implementation

This commit is contained in:
Gergely Hegedus 2021-07-30 22:36:48 +03:00
parent c1b8d92461
commit edf94325d8
19 changed files with 484 additions and 0 deletions

12
annotation/build.gradle Normal file
View file

@ -0,0 +1,12 @@
plugins {
id 'java-library'
id 'kotlin'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
sourceCompatibility = "8"
targetCompatibility = "8"