Skip to content

Commit

Permalink
Fix deprecated gradle warnings (#6221)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed Jun 27, 2022
1 parent 8fac01e commit 4f7c241
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ dependencies {
tasks {
// extract wildfly dist, path is used from arquillian.xml
val setupServer by registering(Copy::class) {
from(zipTree(testServer.singleFile))
inputs.files(testServer)
from({
zipTree(testServer.singleFile)
})
into(file("build/server/"))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ dependencies {
tasks {
// extract wildfly dist, path is used from arquillian.xml
val setupServer by registering(Copy::class) {
from(zipTree(testServer.singleFile))
inputs.files(testServer)
from({
zipTree(testServer.singleFile)
})
into(file("build/server/"))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ dependencies {
tasks {
// extract wildfly dist, path is used from arquillian.xml
val setupServer by registering(Copy::class) {
from(zipTree(testServer.singleFile))
inputs.files(testServer)
from({
zipTree(testServer.singleFile)
})
into(file("build/server/"))
}

Expand Down

0 comments on commit 4f7c241

Please sign in to comment.