We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c15b923 commit 8b11151Copy full SHA for 8b11151
application/build.gradle
@@ -9,6 +9,7 @@ plugins {
9
id 'com.google.cloud.tools.jib' version '3.1.4'
10
id "org.flywaydb.flyway" version "7.15.0"
11
id 'nu.studer.jooq' version '6.0.1'
12
+ id 'com.github.johnrengelman.shadow' version '7.0.0'
13
}
14
15
repositories {
@@ -88,6 +89,16 @@ tasks.generateJooq {
88
89
dependsOn("flywayMigrate")
90
91
92
+application {
93
+ mainClass = "org.togetherjava.tjbot.Application"
94
+}
95
+
96
+shadowJar {
97
+ archiveBaseName.set('TJ-Bot')
98
+ archiveClassifier.set('')
99
+ archiveVersion.set('')
100
101
102
var sqliteVersion = "3.36.0.3"
103
104
dependencies {
0 commit comments