Initial commit

This commit is contained in:
2021-04-01 23:11:56 +02:00
commit cd9e54b2dc
27 changed files with 732 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
templates = [
"README.md"
]
files = [
".gitignore",
".gitattributes"
]
[prompt]
[[prompt.project]]
type = "String"
name = "name"
info = "Project name"
+6
View File
@@ -0,0 +1,6 @@
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# These are explicitly windows files and should use crlf
*.bat text eol=crlf
+2
View File
@@ -0,0 +1,2 @@
.gradle
build
+7
View File
@@ -0,0 +1,7 @@
# {{ project.name }}
## Usage
```bash
./gradlew run
```