diff --git a/accurest-core/src/main/groovy/io/coderate/accurest/config/AccurestConfigProperties.groovy b/accurest-core/src/main/groovy/io/coderate/accurest/config/AccurestConfigProperties.groovy index ea16a0a361..ec95b667b1 100644 --- a/accurest-core/src/main/groovy/io/coderate/accurest/config/AccurestConfigProperties.groovy +++ b/accurest-core/src/main/groovy/io/coderate/accurest/config/AccurestConfigProperties.groovy @@ -1,5 +1,4 @@ package io.coderate.accurest.config - /** * @author Jakub Kubrynski */ @@ -12,7 +11,20 @@ class AccurestConfigProperties { List ignoredFiles = [] String[] imports = [] String[] staticImports = [] + + /** + * Directory containing contracts written using the GroovyDSL + */ File contractsDslDir + + /** + * Test source directory where tests generated from Groovy DSL should be placed + */ File generatedTestSourcesDir + + /** + * Dir where the generated Wiremock stubs from Groovy DSL should be placed. + * You can then mention them in your packaging task to create jar with stubs + */ File stubsOutputDir }