Skip to content

Commit

Permalink
chore: remove snake yaml version control
Browse files Browse the repository at this point in the history
bump: ver 0.7
  • Loading branch information
QizhengMo committed Oct 21, 2024
1 parent 9ea3765 commit 989749a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public QueryYamlTemplateResponseType queryConfigTemplate(QueryYamlTemplateReques
options.setIndent(2);
options.setPrettyFlow(false);
options.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
Representer representer = new Representer();
Representer representer = new Representer(new DumperOptions());
representer.addClassTag(YamlTemplate.class, Tag.MAP);
Yaml yaml = new Yaml(representer, options);
response.setConfigTemplate(yaml.dump(yamlTemplate));
Expand Down
8 changes: 1 addition & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,6 @@
<groupId>com.google.guava</groupId>
<version>${guava.version}</version>
</dependency>
<dependency>
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
<version>${snakeyaml.version}</version>
</dependency>
<!-- test -->
<dependency>
<artifactId>junit</artifactId>
Expand Down Expand Up @@ -495,7 +490,7 @@

<properties>
<!-- Maven CI Friendly Versions https://maven.apache.org/maven-ci-friendly.html -->
<revision>0.6.5.7</revision>
<revision>0.7.0.0</revision>
<arex-common.version>1.0.0</arex-common.version>
<arex-extension-interface.version>0.0.1</arex-extension-interface.version>
<arex-storage-config.version>1.2.24</arex-storage-config.version>
Expand Down Expand Up @@ -525,7 +520,6 @@
<msal.version>1.14.0</msal.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<shedlock-spring.version>4.34.0</shedlock-spring.version>
<snakeyaml.version>1.29</snakeyaml.version>
<google-http-client.version>1.35.0</google-http-client.version>
<spring.boot.version>3.2.3</spring.boot.version>
<springfox-boot-starter.version>3.0.0</springfox-boot-starter.version>
Expand Down

0 comments on commit 989749a

Please sign in to comment.