Skip to content

Commit 0576ed4

Browse files
committed
Adds basic jreleaser config
1 parent 4166bdc commit 0576ed4

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ buildNumber.properties
5555
# http://github.com/takari/maven-wrapper#usage-without-binary-jar
5656
.mvn/wrapper/maven-wrapper.jar
5757

58-
# End of http://www.toptal.com/developers/gitignore/api/maven,kotlin
59-
58+
out/
59+
.idea/

jreleaser.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[project]
2+
name = "ki"
3+
version = "0.3.2"
4+
description = "ki shell"
5+
longDescription = "Extendable Kotlin interactive shell with code completion, syntax highlighting, and other features"
6+
website = "http://github.com/Kotlin/kotlin-interactive-shell"
7+
authors = ["Vitaly Khudobakhshov", "Ilya Chernikov"]
8+
license = "Apache-2"
9+
java.groupId = "org.jetbrains.kotlinx"
10+
java.version = "8"
11+
12+
[distributions.ki]
13+
executable = "ki.sh"
14+
artifacts = [
15+
{ path = "ki-shell/target/ki-archive.zip" }
16+
]
17+
tags = ["cli", "Kotlin", "shell", "interactive"]
18+
19+
[release.github]
20+
owner = "Kotlin"
21+
username = "asm0dey"
22+
skipTag = true
23+
overwrite = true
24+
name = "kotlin-interactive-shell"
25+
26+
[packagers.brew]
27+
active = "ALWAYS"
28+
formulaName = "Ki"
29+
30+
[packagers.scoop]
31+
active = "ALWAYS"
32+

0 commit comments

Comments
 (0)