From ed7e7e1a30b470b5221a1d87bc09d99bc56d58ba Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Sat, 21 Feb 2015 21:15:42 +0100 Subject: [PATCH] Added javadocs for extension parameters --- .../config/AccurestConfigProperties.groovy | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 }