made generation timestamp optional

This commit is contained in:
Tony Tam
2016-04-03 13:31:39 -06:00
parent 4bb12871c3
commit aab280d564
56 changed files with 217 additions and 230 deletions

View File

@@ -27,7 +27,8 @@ public class JaxRSServerOptionsProvider extends JavaOptionsProvider {
builder.putAll(options)
.put(CodegenConstants.IMPL_FOLDER, IMPL_FOLDER_VALUE)
//.put(JavaJaxRSJersey1ServerCodegen.DATE_LIBRARY, "joda") //java.lang.IllegalArgumentException: Multiple entries with same key: dateLibrary=joda and dateLibrary=joda
.put("title", "Test title");
.put("title", "Test title")
.put("showGenerationTimestamp", "true");
return builder.build();
}