Skip to content

Commit 715be29

Browse files
Merge branch 'main' into Issue-851-password-digest-password
2 parents 8c06bc6 + 5556880 commit 715be29

File tree

298 files changed

+12816
-17329
lines changed

Some content is hidden

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

298 files changed

+12816
-17329
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pipeline {
6767
}
6868
}
6969
steps {
70-
sh 'mvn -P system-test -Dmw_home=${ORACLE_HOME} test-compile failsafe:integration-test'
70+
sh 'mvn -DskipITs=false -Dmw_home=${ORACLE_HOME} -Ddb.use.container.network=true verify'
7171
}
7272
post {
7373
always {

alias-test/pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
<modelVersion>4.0.0</modelVersion>
88

99
<artifactId>weblogic-deploy-alias-test</artifactId>
10+
<packaging>pom</packaging>
1011

1112
<parent>
1213
<artifactId>weblogic-deploy</artifactId>
1314
<groupId>com.oracle.weblogic.lifecycle</groupId>
14-
<version>1.9.7-SNAPSHOT</version>
15+
<version>2.0.0-SNAPSHOT</version>
1516
</parent>
1617

1718
<properties>
@@ -22,6 +23,7 @@
2223
<dependency>
2324
<groupId>junit</groupId>
2425
<artifactId>junit</artifactId>
26+
<version>4.13.1</version>
2527
<scope>test</scope>
2628
</dependency>
2729
<dependency>
@@ -32,7 +34,6 @@
3234
<dependency>
3335
<groupId>commons-io</groupId>
3436
<artifactId>commons-io</artifactId>
35-
<version>2.7</version>
3637
<scope>test</scope>
3738
</dependency>
3839
</dependencies>
@@ -50,6 +51,7 @@
5051
<goal>testCompile</goal>
5152
</goals>
5253
<configuration>
54+
<skip>${alias-test-skipITs}</skip>
5355
</configuration>
5456
</execution>
5557
</executions>
@@ -64,18 +66,21 @@
6466
<goals>
6567
<goal>testResources</goal>
6668
</goals>
69+
<configuration>
70+
<skip>${alias-test-skipITs}</skip>
71+
</configuration>
6772
</execution>
6873
</executions>
6974
</plugin>
7075
<plugin>
7176
<groupId>org.apache.maven.plugins</groupId>
7277
<artifactId>maven-failsafe-plugin</artifactId>
73-
<version>3.0.0-M3</version>
7478
<configuration>
79+
<skip>${alias-test-skipITs}</skip>
7580
<encoding>UTF-8</encoding>
7681
<failIfNoTests>false</failIfNoTests>
7782
<argLine>
78-
-Xmx1024m -XX:MaxPermSize=256m
83+
-Xmx1024m
7984
</argLine>
8085
<systemProperties>
8186
<property>

core/pom.xml

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright (c) 2017, 2020, Oracle Corporation and/or its affiliates.
3+
Copyright (c) 2017, 2022, Oracle Corporation and/or its affiliates.
44
The Universal Permissive License (UPL), Version 1.0
55
-->
66
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -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>
@@ -37,30 +41,16 @@
3741
<dependency>
3842
<groupId>org.python</groupId>
3943
<artifactId>jython</artifactId>
40-
<version>2.2.1</version>
4144
<scope>provided</scope>
4245
</dependency>
4346
<dependency>
44-
<groupId>junit</groupId>
45-
<artifactId>junit</artifactId>
47+
<groupId>org.junit.jupiter</groupId>
48+
<artifactId>junit-jupiter-engine</artifactId>
4649
<scope>test</scope>
4750
</dependency>
4851
<dependency>
4952
<groupId>org.easymock</groupId>
5053
<artifactId>easymock</artifactId>
51-
<version>3.6</version>
52-
<scope>test</scope>
53-
</dependency>
54-
<dependency>
55-
<groupId>org.powermock</groupId>
56-
<artifactId>powermock-api-easymock</artifactId>
57-
<version>2.0.9</version>
58-
<scope>test</scope>
59-
</dependency>
60-
<dependency>
61-
<groupId>org.powermock</groupId>
62-
<artifactId>powermock-module-junit4</artifactId>
63-
<version>2.0.9</version>
6454
<scope>test</scope>
6555
</dependency>
6656
</dependencies>
@@ -104,7 +94,7 @@
10494
<configuration>
10595
<archive>
10696
<manifestEntries>
107-
<Class-Path>antlr4-runtime-${antlr.version}.jar</Class-Path>
97+
<Class-Path>antlr4-runtime-${antlr.version}.jar snakeyaml-${snakeyaml.version}.jar</Class-Path>
10898
</manifestEntries>
10999
</archive>
110100
</configuration>
@@ -139,6 +129,7 @@
139129
<wlstScriptDirectory>${unit-test-wlst-dir}</wlstScriptDirectory>
140130
<wlstExtClasspath>
141131
<element>org.antlr:antlr4-runtime:jar</element>
132+
<element>org.yaml:snakeyaml:jar</element>
142133
</wlstExtClasspath>
143134
<systemProperties>
144135
<unit-test-wlst-dir>${unit-test-wlst-dir}</unit-test-wlst-dir>

0 commit comments

Comments
 (0)