summaryrefslogtreecommitdiffstats
path: root/to_jetty.sh
blob: c37bd08abecc36a4f67b81e2ea9f98bd591045d1 (plain)
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
#!/bin/sh

# Builds and deploys into Jetty; primarily for debugging

jetty=$1
if [ -z "$jetty" ]
then
	echo >&2 "usage: $0 jettydir"
	exit 1
fi
if ! [ -f "$jetty/etc/jetty.xml" ]
then
	echo >&2 "error: $jetty is not a Jetty installation"
	exit 1
fi

ctx="$jetty/contexts/gerrit.xml" &&

(cd appjar && mvn package) &&
war=appjar/target/gerrit-*.war &&

cp $war "$jetty/webapps/gerrit.war" &&
if [ -f "$ctx" ]
then
	touch "$ctx"
else
	for f in postgresql-8.3-603.jdbc3.jar c3p0-0.9.1.2.jar
	do
		$war --cat lib/$f >"$jetty/lib/plus/$f"
	done

	rm -f "$jetty/contexts/test.xml" &&
	$war --cat extra/jetty_gerrit.xml >"$ctx" &&

	echo >&2 &&
	echo >&2 "You need to edit and configure $ctx"
fi