2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-26 07:47:13 -07:00

Specify uberjar main class specifically

This commit is contained in:
Geert Bevin 2023-03-06 18:39:39 -05:00
parent 122db8a40e
commit 8e249a3f50

View file

@ -4,13 +4,14 @@ import com.uwyn.rife2.gradle.TemplateType.*
plugins { plugins {
application application
id("com.uwyn.rife2") version "1.0.4" id("com.uwyn.rife2") version "1.0.5"
`maven-publish` `maven-publish`
id("org.graalvm.buildtools.native") version "0.9.20" id("org.graalvm.buildtools.native") version "0.9.20"
} }
rife2 { rife2 {
version.set("1.4.0") version.set("1.4.0")
uberMainClass.set("hello.AppUber")
useAgent.set(true) useAgent.set(true)
precompiledTemplateTypes.add(HTML) precompiledTemplateTypes.add(HTML)
} }