13 lines
419 B
Groovy
13 lines
419 B
Groovy
dependencies {
|
|
api project(':net-http-server')
|
|
api libs.netty.codec.http2
|
|
testImplementation project(':net-http-client-netty')
|
|
testImplementation project(':net-http-template-groovy')
|
|
testImplementation libs.datastructures.json.tiny
|
|
}
|
|
|
|
test {
|
|
systemProperty 'application.name', 'test'
|
|
systemProperty 'application.home', 'src/test/resources'
|
|
systemProperty 'application.profile', 'test'
|
|
}
|