Skip to content

Commit

Permalink
chore(deps): bump com.samskivert:jmustache from 1.15 to 1.16 (6155)
Browse files Browse the repository at this point in the history
chore(deps): bump com.samskivert:jmustache from 1.15 to 1.16

Bumps [com.samskivert:jmustache](https://github.com/samskivert/jmustache) from 1.15 to 1.16.
- [Commits](samskivert/jmustache@jmustache-1.15...jmustache-1.16)

---
updated-dependencies:
- dependency-name: com.samskivert:jmustache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
---
fix: required model.mustache template changes for jmustache 1.16

Signed-off-by: Marc Nuri <marc@marcnuri.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marc Nuri <marc@marcnuri.com>
  • Loading branch information
dependabot[bot] and manusa authored Oct 11, 2024
1 parent eaa1b73 commit 9d7e04e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes-model-generator/openapi/maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>com.samskivert</groupId>
<artifactId>jmustache</artifactId>
<version>1.15</version>
<version>1.16</version>
</dependency>
<dependency>
<groupId>io.swagger.parser.v3</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
limitations under the License.
}}
{{>licenseInfo}}

package {{package}};

{{#imports}}
Expand All @@ -26,8 +27,11 @@ import {{.}};
{{> model_class_annotations}}public class {{className}} implements {{implementedInterfaces}}
{
{{>model_fields}}

{{#hasFields}}
{{>model_constructors}}

{{/hasFields}}
{{>model_methods}}

}

0 comments on commit 9d7e04e

Please sign in to comment.