Skip to content

Commit 8789e5f

Browse files
committed
switching yaml handler to snakeyaml
1 parent 47a4e45 commit 8789e5f

38 files changed

+815
-1693
lines changed

core/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<artifactId>weblogic-deploy</artifactId>
1313
<groupId>com.oracle.weblogic.lifecycle</groupId>
14-
<version>1.9.19-SNAPSHOT</version>
14+
<version>2.0.0-SNAPSHOT</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

@@ -28,6 +28,10 @@
2828
<groupId>org.antlr</groupId>
2929
<artifactId>antlr4-runtime</artifactId>
3030
</dependency>
31+
<dependency>
32+
<groupId>org.yaml</groupId>
33+
<artifactId>snakeyaml</artifactId>
34+
</dependency>
3135
<dependency>
3236
<groupId>javax.xml.bind</groupId>
3337
<artifactId>jaxb-api</artifactId>
@@ -104,7 +108,7 @@
104108
<configuration>
105109
<archive>
106110
<manifestEntries>
107-
<Class-Path>antlr4-runtime-${antlr.version}.jar</Class-Path>
111+
<Class-Path>antlr4-runtime-${antlr.version}.jar snakeyaml-${snakeyaml.version}.jar</Class-Path>
108112
</manifestEntries>
109113
</archive>
110114
</configuration>
@@ -139,6 +143,7 @@
139143
<wlstScriptDirectory>${unit-test-wlst-dir}</wlstScriptDirectory>
140144
<wlstExtClasspath>
141145
<element>org.antlr:antlr4-runtime:jar</element>
146+
<element>org.yaml:snakeyaml:jar</element>
142147
</wlstExtClasspath>
143148
<systemProperties>
144149
<unit-test-wlst-dir>${unit-test-wlst-dir}</unit-test-wlst-dir>

core/src/main/antlr4/oracle/weblogic/deploy/yaml/Yaml.g4

Lines changed: 0 additions & 329 deletions
This file was deleted.

0 commit comments

Comments
 (0)