12 lines
366 B
Groovy
12 lines
366 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')
|
|
}
|
|
|
|
test {
|
|
systemProperty 'application.name', 'test'
|
|
systemProperty 'application.home', 'src/test/resources'
|
|
systemProperty 'application.profile', 'test'
|
|
}
|