Skip to content

Commit 39ddf45

Browse files
committed
merging develop-4.0
2 parents 195e7da + 33f6681 commit 39ddf45

File tree

652 files changed

+28572
-11513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

652 files changed

+28572
-11513
lines changed

THIRD_PARTY_LICENSES.txt

Lines changed: 852 additions & 1312 deletions
Large diffs are not rendered by default.

core/pom.xml

Lines changed: 54 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>3.5.5-SNAPSHOT</version>
14+
<version>4.0.0-SNAPSHOT</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

@@ -36,6 +36,51 @@
3636
<groupId>info.picocli</groupId>
3737
<artifactId>picocli</artifactId>
3838
</dependency>
39+
<dependency>
40+
<groupId>com.hierynomus</groupId>
41+
<artifactId>sshj</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>net.i2p.crypto</groupId>
45+
<artifactId>eddsa</artifactId>
46+
<scope>runtime</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.slf4j</groupId>
50+
<artifactId>slf4j-jdk14</artifactId>
51+
<scope>runtime</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.slf4j</groupId>
55+
<artifactId>slf4j-api</artifactId>
56+
<scope>runtime</scope>
57+
</dependency>
58+
<dependency>
59+
<groupId>com.jcraft</groupId>
60+
<artifactId>jzlib</artifactId>
61+
<scope>runtime</scope>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.hierynomus</groupId>
65+
<artifactId>asn-one</artifactId>
66+
<scope>runtime</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>org.fusesource.jansi</groupId>
70+
<artifactId>jansi</artifactId>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.jline</groupId>
74+
<artifactId>jline-terminal-jansi</artifactId>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.jline</groupId>
78+
<artifactId>jline-terminal</artifactId>
79+
</dependency>
80+
<dependency>
81+
<groupId>org.jline</groupId>
82+
<artifactId>jline-reader</artifactId>
83+
</dependency>
3984
<dependency>
4085
<groupId>javax.xml.bind</groupId>
4186
<artifactId>jaxb-api</artifactId>
@@ -89,6 +134,7 @@
89134
<includes>
90135
<include>oracle/**/*.json</include>
91136
<include>oracle/**/*.ldift</include>
137+
<include>oracle/**/*.mustache</include>
92138
<include>oracle/**/*.properties</include>
93139
<include>oracle/**/*.sh</include>
94140
<include>oracle/**/*.yaml</include>
@@ -171,7 +217,7 @@
171217
<archive>
172218
<manifestEntries>
173219
<Multi-Release>true</Multi-Release>
174-
<Class-Path>antlr4-runtime-${antlr.version}.jar snakeyaml-${snakeyaml.version}.jar picocli-${picocli.version}.jar</Class-Path>
220+
<Class-Path>antlr4-runtime-${antlr.version}.jar snakeyaml-${snakeyaml.version}.jar picocli-${picocli.version}.jar sshj-${sshj.version}.jar asn-one-${asn.one.version}.jar eddsa-${eddsa.version}.jar slf4j-jdk14-${slf4j.version}.jar slf4j-api-${slf4j.version}.jar jzlib-${jzlib.version}.jar jline-reader-${jline.version}.jar jline-terminal-${jline.version}.jar jline-terminal-jansi-${jline.version}.jar jansi-${jansi.version}.jar</Class-Path>
175221
</manifestEntries>
176222
</archive>
177223
</configuration>
@@ -207,9 +253,15 @@
207253
<wlstExtClasspath>
208254
<element>org.antlr:antlr4-runtime:jar</element>
209255
<element>org.yaml:snakeyaml:jar</element>
256+
<element>com.hierynomus:sshj:jar</element>
257+
<element>net.i2p.crypto:eddsa:jar</element>
258+
<element>org.slf4j:slf4j-jdk14:jar</element>
259+
<element>org.slf4j:slf4j-api:jar</element>
260+
<element>com.jcraft:jzlib:jar</element>
210261
</wlstExtClasspath>
211262
<systemProperties>
212263
<unit-test-wlst-dir>${unit-test-wlst-dir}</unit-test-wlst-dir>
264+
<java.util.logging.config.file>${project.basedir}/src/test/resources/log-unit-test.properties</java.util.logging.config.file>
213265
</systemProperties>
214266
<environmentVariables>
215267
<WDT_CUSTOM_CONFIG>${project.build.directory}/unit-tests/wdt-config</WDT_CUSTOM_CONFIG>

0 commit comments

Comments
 (0)