Skip to content

Commit ce97360

Browse files
committed
Merge branch 'new-yaml-handler' into develop
2 parents a30f1e1 + 952a76b commit ce97360

36 files changed

+817
-973
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>
@@ -103,7 +107,7 @@
103107
<configuration>
104108
<archive>
105109
<manifestEntries>
106-
<Class-Path>antlr4-runtime-${antlr.version}.jar</Class-Path>
110+
<Class-Path>antlr4-runtime-${antlr.version}.jar snakeyaml-${snakeyaml.version}.jar</Class-Path>
107111
</manifestEntries>
108112
</archive>
109113
</configuration>
@@ -138,6 +142,7 @@
138142
<wlstScriptDirectory>${unit-test-wlst-dir}</wlstScriptDirectory>
139143
<wlstExtClasspath>
140144
<element>org.antlr:antlr4-runtime:jar</element>
145+
<element>org.yaml:snakeyaml:jar</element>
141146
</wlstExtClasspath>
142147
<systemProperties>
143148
<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)