2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 15:37:10 -07:00

Added a RunTask which includes the templates directory in the runtime classspath

This commit is contained in:
Erik C. Thauvin 2023-02-26 17:58:21 -08:00
parent 834c75492b
commit d954e75cf5
6 changed files with 102 additions and 21 deletions

View file

@ -2,19 +2,15 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
plugins {
application
id("com.uwyn.rife2")
`maven-publish`
}
version = 1.0
group = "com.example"
base {
archivesName.set("hello")
version = 1.0
group = "com.example"
}
application {
mainClass.set("hello.App")
}
java {
@ -30,6 +26,7 @@ repositories {
}
rife2 {
mainClass.set("hello.App")
version.set("1.3.0")
useAgent.set(true)
}