Skip to content

Commit

Permalink
fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
RTAkland committed Nov 30, 2024
1 parent 31c8c7c commit 003e0c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 34 deletions.
36 changes: 4 additions & 32 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,4 @@
# ---> Kotlin
# ---> Kotlin
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

/.idea/
/.gradle/
/run/
/build/

conf.json
.kotlin/
.gradle/
.idea/
build/
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ application {
mainClass = "cn.rtast.kwsify.KwsifyKt"
}

tasks.shadowJar {
dependsOn(tasks.build)
tasks.build {
dependsOn(tasks.shadowJar)
}

0 comments on commit 003e0c6

Please sign in to comment.