1
0

Add more options

This commit is contained in:
2020-09-10 14:34:00 +02:00
parent 67e7a642db
commit b0eaa16752
8 changed files with 67 additions and 26 deletions
@@ -19,6 +19,6 @@
</execution>
</executions>
<configuration>
<jvmTarget>14</jvmTarget>
<jvmTarget>${java.version}</jvmTarget>
</configuration>
</plugin>
+4 -2
View File
@@ -6,8 +6,10 @@
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.target>14</maven.compiler.target>
<maven.compiler.source>14</maven.compiler.source>
<java.version>{{ javaVersion }}</java.version>
<kotlin.version>{{ kotlinVersion }}</kotlin.version>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<main.class>{{ basePackage }}/{{ name | lower | capitalize }}Kt</main.class>
</properties>