File tree Expand file tree Collapse file tree 4 files changed +29
-7
lines changed
system-test/src/test/resources Expand file tree Collapse file tree 4 files changed +29
-7
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <web-app version =" 2.5" xmlns =" http://java.sun.com/xml/ns/javaee"
3
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:schemaLocation=" http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" >
5
+ <welcome-file-list >
6
+ <welcome-file >/simple.html</welcome-file >
7
+ </welcome-file-list >
8
+ </web-app >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" ISO-8859-1" ?>
2
+
3
+ <weblogic-web-app xmlns =" http://www.bea.com/ns/weblogic/90" >
4
+ <context-root >/simple</context-root >
5
+ </weblogic-web-app >
Original file line number Diff line number Diff line change
1
+ < html >
2
+ < head >
3
+ < title > Simple Application</ title >
4
+ </ head >
5
+ < body >
6
+ < h1 > Simple Application</ h1 >
7
+ < p > This is the simple application.</ p >
8
+ </ body >
9
+ </ html >
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
#
3
- # Copyright (c) 2018, 2020 , Oracle and/or its affiliates.
3
+ # Copyright (c) 2018, 2022 , Oracle and/or its affiliates.
4
4
#
5
5
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
6
6
#
7
7
projectDir=$( pwd)
8
8
archiveDir=${projectDir} /target/resources/archive
9
- rm -Rf $archiveDir
10
- mkdir -p $archiveDir /wlsdeploy/applications
11
- cd ../samples/docker-domain/ simple-app
12
- jar cvf $archiveDir /wlsdeploy/applications/simple-app.war *
13
- cd $archiveDir
14
- jar cvf ../archive.zip *
9
+ rm -Rf " $archiveDir "
10
+ mkdir -p " $archiveDir " /wlsdeploy/applications
11
+ cd " $projectDir " /src/test/resources/archive/ simple-app || exit
12
+ jar cvf " $archiveDir " /wlsdeploy/applications/simple-app.war ./ *
13
+ cd " $archiveDir " || exit
14
+ jar cvf ../archive.zip ./ *
You can’t perform that action at this time.
0 commit comments