net-http/net-http-server-application-web/build.gradle

32 lines
1.1 KiB
Groovy
Raw Normal View History

2022-10-20 10:19:32 +02:00
apply plugin: 'application'
dependencies {
api project(':net-http-server-netty-secure')
api project(':net-http-server-application-config')
api project(':net-http-template-groovy')
2023-07-04 18:42:00 +02:00
api project(':net-http-j2html')
2022-10-20 10:19:32 +02:00
api libs.jdbc.query
implementation libs.webjars.bootstrap
implementation libs.webjars.jquery
implementation libs.webjars.fontawesome
2023-09-27 15:13:49 +02:00
testRuntimeOnly libs.net.bouncycastle
2022-10-20 10:19:32 +02:00
}
application {
2023-07-04 18:42:00 +02:00
mainClass.set('org.xbib.net.http.server.application.web.j2html.Bootstrap')
2022-10-20 10:19:32 +02:00
applicationDefaultJvmArgs = [
'-Dfile.encoding=UTF-8',
'-Duser.language=de',
'-Duser.country=DE',
'-Djava.awt.headless=true',
'-Djava.util.logging.config.file=src/main/resources/logging.properties',
'-Dapplication.home=src/main/application',
'-Dapplication.profile=dev',
'-Dapplication.name=web',
'-Ddatabase.url=jdbc:derby:sample',
'-Ddatabase.flavor=derby',
'-Ddatabase.user=derby',
'-Ddatabase.password=derby'
]
}