Skip to content

Commit e35dc6d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 835eec2 + b8a86eb commit e35dc6d

20 files changed

+77
-76
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ release.properties
2727
**/*$py.class
2828
**/*.pyc
2929
**/.DS_Store
30+
system-test/domains

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ If you want to submit a pull request to fix a bug or enhance an existing feature
55

66
If you have any questions about a possible submission, feel free to open an issue too.
77

8-
## [Contributing to the Oracle WLS Deploy repository](http://github.com/oracle/wls-deploy/blob/master/CONTRIBUTING.md)
8+
## [Contributing to the WebLogic Deploy repository](http://github.com/oracle/wls-deploy/blob/master/CONTRIBUTING.md)
99
Pull requests can be made under [The Oracle Contributor Agreement](https://www.oracle.com/technetwork/community/oca-486395.html) (OCA).
1010

1111
For pull requests to be accepted, the bottom of your commit message must have the following line using your name and e-mail address as it appears in the OCA Signatories list.

alias-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>commons-io</groupId>
3434
<artifactId>commons-io</artifactId>
35-
<version>2.6</version>
35+
<version>2.7</version>
3636
<scope>test</scope>
3737
</dependency>
3838
</dependencies>

core/pom.xml

Lines changed: 1 addition & 1 deletion
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.12-SNAPSHOT</version>
14+
<version>1.9.13-SNAPSHOT</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

installer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.oracle.weblogic.lifecycle</groupId>
1414
<artifactId>weblogic-deploy</artifactId>
15-
<version>1.9.12-SNAPSHOT</version>
15+
<version>1.9.13-SNAPSHOT</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

installer/src/main/bin/compareModel.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ usage() {
4343

4444
WLSDEPLOY_PROGRAM_NAME="compareModel"; export WLSDEPLOY_PROGRAM_NAME
4545

46-
scriptName=`basename $0`
46+
scriptName=$(basename "$0")
4747
scriptPath=$(dirname "$0")
4848
scriptArgs=$*
4949

50-
. $scriptPath/shared.sh
50+
. "$scriptPath/shared.sh"
5151

5252
umask 27
5353

installer/src/main/bin/createDomain.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ usage() {
107107

108108
WLSDEPLOY_PROGRAM_NAME="createDomain"; export WLSDEPLOY_PROGRAM_NAME
109109

110-
scriptName=`basename $0`
110+
scriptName=$(basename "$0")
111111
scriptPath=$(dirname "$0")
112112
scriptArgs=$*
113113

114-
. $scriptPath/shared.sh
114+
. "$scriptPath/shared.sh"
115115

116116
umask 27
117117

installer/src/main/bin/deployApps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ usage() {
9292

9393
WLSDEPLOY_PROGRAM_NAME="deployApps"; export WLSDEPLOY_PROGRAM_NAME
9494

95-
scriptName=`basename $0`
95+
scriptName=$(basename "$0")
9696
scriptPath=$(dirname "$0")
9797
scriptArgs=$*
9898

99-
. $scriptPath/shared.sh
99+
. "$scriptPath/shared.sh"
100100

101101
umask 27
102102

installer/src/main/bin/discoverDomain.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ usage() {
9090

9191
WLSDEPLOY_PROGRAM_NAME="discoverDomain"; export WLSDEPLOY_PROGRAM_NAME
9292

93-
scriptName=`basename $0`
93+
scriptName=$(basename "$0")
9494
scriptPath=$(dirname "$0")
9595
scriptArgs=$*
9696

97-
. $scriptPath/shared.sh
97+
. "$scriptPath/shared.sh"
9898

9999
umask 27
100100

installer/src/main/bin/encryptModel.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ usage() {
6363

6464
WLSDEPLOY_PROGRAM_NAME="encryptModel"; export WLSDEPLOY_PROGRAM_NAME
6565

66-
scriptName=`basename $0`
66+
scriptName=$(basename "$0")
6767
scriptPath=$(dirname "$0")
6868
scriptArgs=$*
6969

70-
. $scriptPath/shared.sh
70+
. "$scriptPath/shared.sh"
7171

7272
umask 27
7373

0 commit comments

Comments
 (0)