File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -55,13 +55,15 @@ services.each { Service svc ->
5555 }
5656
5757 // serializer
58- def servicePath = " src/main/java/com/adyen/service "
59- def serviceSource = " services/$svc . id /${ servicePath } "
60- from(layout. buildDirectory. file(" ${ serviceSource } /JSON.java" )) {
58+ def serializerPath = " src/main/java/com/adyen"
59+ def serializerSource = " services/$svc . id /${ serializerPath } "
60+ from(layout. buildDirectory. file(" ${ serializerSource } /JSON.java" )) {
6161 into " ${ modelsPath} /${ svc.id} "
6262 }
6363
6464 // service
65+ def servicePath = " src/main/java/com/adyen/service"
66+ def serviceSource = " services/$svc . id /${ servicePath} "
6567 from(layout. buildDirectory. dir(" ${ serviceSource} /$svc . id " )) {
6668 include " *.java"
6769 into " ${ servicePath} /${ svc.id} "
You can’t perform that action at this time.
0 commit comments