https://github.com/spilth/kotlin-minimal-quickstart
Archetype for generating a minimal Kotlin Maven project
https://github.com/spilth/kotlin-minimal-quickstart
kotlin maven maven-archetype
Last synced: 2 months ago
JSON representation
Archetype for generating a minimal Kotlin Maven project
- Host: GitHub
- URL: https://github.com/spilth/kotlin-minimal-quickstart
- Owner: spilth
- Created: 2017-11-04T18:47:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-04T18:48:11.000Z (over 8 years ago)
- Last Synced: 2025-12-29T16:24:16.399Z (6 months ago)
- Topics: kotlin, maven, maven-archetype
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kotlin Minimal Quickstart
This is a Maven Archetype for starting a minimal Kotlin project. It includes the following:
- Configured to compile against Java 1.8
- Fixes warnings that Maven generates by default
# Usage
To create a new project using this archetype:
```bash
$ mvn archetype:generate -B -DarchetypeGroupId=org.spilth -DarchetypeArtifactId=kotlin-minimal-quickstart -DgroupId=com.example -DartifactId=helloworld -Dversion=1.0.0
$ cd helloworld
$ mvn package
```