1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
#!/bin/sh
#
# Copyright (c) 2003, 2004, 2005, 2006 Israfil Consulting Services Corporation
# Copyright (c) 2003, 2004, 2005, 2006 Christian Edward Gruber
# All Rights Reserved
#
# This software is licensed under a Berkeley Standard Distribution license
# equivalent (BSD license) as defined below:
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. Neither the name of Israfil Consulting Services nor the names of its contributors
# may be used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
# OF SUCH DAMAGE.
#
# $Id$
#
command=`basename $0`
cmd_dir=`dirname $0`
#set -x
function usage () {
echo "usage: ${command} [--test]-u <repo_url> -b <bea_home> [-p <poms_folder>] "
echo "Options: -u --url <repo_url> the url to the deployment repository "
echo " -b --bea-home <bea_home> the BEA_HOME folder "
echo " -p --poms <pomsfolder> a folder with poms, structured \${groupId}/\${artifactId}/\${version} "
Echo " --test run the app without invoking maven, for testing "
}
function validate () {
valid="true"
echo ""
if [ "${bea_home}" = "" ]; then
echo "${command} requires that a bea home folder be given" ; valid="false"
elif [ ! -d "${bea_home}" ]; then
echo "BEA home folder ${bea_home} is not a valid directory." ; valid="false"
fi
if [ "${repository_url}" = "" ]; then
echo "${command} requires a repository URL" ; valid="false"
fi
if [ "${poms_dir}" != "" -a ! -d ${poms_dir} ]; then
echo "${poms_dir} is not a valid directory" ; valid="false"
fi
if [ "${valid}" = "false" ]; then
echo "" ; usage ; exit 1
fi
}
# loop through possible commands.
until [ "${done}" = "true" ]; do
if [ "${1}" = "-b" -o "${1}" = "--bea-home" ]; then
shift
bea_home="${1}"
shift
elif [ "${1}" = "-u" -o "${1}" = "--url" ]; then
shift
repository_url="${1}"
shift
elif [ "${1}" = "--test" ]; then
shift
test="true"
else
# assume we're into files now.
done="true"
fi
done
validate
echo "Installing BEA weblogic portal 9.2 folders from ${bea_home} to ${repository_url}"
echo ""
function install () {
group_id=$1
shift
if [ "${test}" = "true" ]; then do_test="--test" ; fi
${cmd_dir}/mvn-deploy-files -u ${repository_url} -g ${group_id} -v 9.2 ${do_test} $@
}
function installFromJ2EELibrary () {
j2eeLibrary=$1
shift
group_id=$1
shift
if [ "${test}" = "true" ]; then do_test="--test" ; fi
curdir=`pwd`
tmpdir=`mktemp.exe -d -p ${curdir}`
cd ${tmpdir}
jar -xf ${curdir}/${j2eeLibrary}
${cmd_dir}/mvn-deploy-files -u ${repository_url} -g ${group_id} -v 9.2 ${do_test} $@
cd ${curdir}
rm -r ${tmpdir}
}
# Visitor Tools
cd ${bea_home}/weblogic92/portal/lib/modules/ && installFromJ2EELibrary wlp-tools-visitor-web-lib.war com.bea.weblogic.portal.visitor WEB-INF/lib/*.jar
# The big one.
cd ${bea_home}/weblogic92/server/lib && install com.bea.weblogic.server weblogic*.jar
cd ${bea_home}/weblogic92/server/lib && install com.bea.weblogic.server *api.jar
# The workshop stuff - important for ant support.
cd ${bea_home}/weblogic92/workshop/lib && install com.bea.weblogic.workshop *.jar
# Critical beehive/netui stuff
cd ${bea_home}/weblogic92/beehive/weblogic-beehive/lib/netui && install com.bea.weblogic.beehive.netui *.jar
cd ${bea_home}/weblogic92/beehive/weblogic-beehive/lib/controls && install com.bea.weblogic.beehive.controls *.jar
cd ${bea_home}/weblogic92/beehive/weblogic-beehive/lib/controls/runtime && install com.bea.weblogic.beehive.controls.runtime *.jar
# The portal platform
cd ${bea_home}/weblogic92/platform/lib/wlp && install com.bea.weblogic.portal.core *.jar
cd ${bea_home}/weblogic92/platform/lib/p13n && install com.bea.weblogic.portal.p13n *.jar
cd ${bea_home}/weblogic92/common/deployable-libraries/ && installFromJ2EELibrary p13n-app-lib.ear com.bea.weblogic.portal.p13n APP-INF/lib/*.jar *.jar
# Console and netuix stuff.
cd ${bea_home}/weblogic92/server/lib/consoleapp/webapp/WEB-INF/lib && install com.bea.weblogic.portal.core netuix_servlet.jar
cd ${bea_home}/weblogic92/portal/lib/modules/ && installFromJ2EELibrary wlp-framework-full-web-lib.war com.bea.weblogic.portal.core WEB-INF/lib/netuix_servlet-full.jar
cd ${bea_home}/weblogic92/server/lib/consoleapp/webapp/WEB-INF/lib && install com.bea.weblogic.portal.core struts-adapter.jar
cd ${bea_home}/weblogic92/portal/lib/modules/ && installFromJ2EELibrary wlp-framework-full-app-lib.ear com.bea.weblogic.portal.core netuix.jar
cd ${bea_home}/weblogic92/server/lib/consoleapp/webapp/WEB-INF/lib && install com.bea.weblogic.server console.jar
cd ${bea_home}/weblogic92/portal/lib/modules/ && installFromJ2EELibrary wlp-tools-app-lib.ear com.bea.weblogic.portal.core APP-INF/lib/tools-framework.jar APP-INF/lib/wlptools_en.jar
# Taglibs
cd ${bea_home}/weblogic92/server/lib/consoleapp/webapp/WEB-INF/lib && install com.bea.weblogic.server *_taglib.jar
cd ${bea_home}/weblogic92/portal/lib/netuix/web && install com.bea.weblogic.portal *_taglib.jar
cd ${bea_home}/weblogic92/portal/eclipse/plugins/com.bea.wlp.eclipse.common.taglib_9.2.0 && install com.bea.weblogic.portal *_taglib.jar
cd ${bea_home}/weblogic92/portal/eclipse/plugins/com.bea.wlp.eclipse.im.taglib_9.2.0 && install com.bea.weblogic.portal *_taglib.jar
cd ${bea_home}/weblogic92/portal/eclipse/plugins/com.bea.wlp.eclipse.p13n.taglib_9.2.0 && install com.bea.weblogic.portal *_taglib.jar
cd ${bea_home}/weblogic92/portal/eclipse/plugins/com.bea.wlp.eclipse.wsrp.taglib_9.2.0 && install com.bea.weblogic.portal *_taglib.jar
|