Rename templates
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>{{ basePackage }}</groupId>
|
||||
<artifactId>{{ name | lower }}</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
|
||||
<properties>
|
||||
<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>
|
||||
|
||||
{% include "starter/pom/@dependencies" %}
|
||||
|
||||
{% include "starter/pom/@repositories" %}
|
||||
|
||||
{% include "starter/pom/@plugins" %}
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user