We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bdaf37 commit df354b8Copy full SHA for df354b8
modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/ErlangServerCodegen.java
@@ -110,6 +110,15 @@ public ErlangServerCodegen() {
110
*/
111
additionalProperties.put("apiVersion", apiVersion);
112
additionalProperties.put("apiPath", apiPath);
113
+ }
114
+
115
+ @Override
116
+ public void processOpts() {
117
+ super.processOpts();
118
119
+ if (additionalProperties.containsKey(CodegenConstants.PACKAGE_NAME)) {
120
+ setPackageName((String) additionalProperties.get(CodegenConstants.PACKAGE_NAME));
121
122
/**
123
* Supporting Files. You can write single files for the generator with the
124
* entire object tree available. If the input file has a suffix of `.mustache
0 commit comments