View | Details | Raw Unified | Return to bug 258438
Collapse All | Expand All

(-)b/www/tomee-plus/Makefile (+68 lines)
Added Link Here
1
2
PORTNAME=	tomee
3
PORTVERSION=	8.0.6
4
CATEGORIES=	www java
5
MASTER_SITES=	APACHE/${PORTNAME}/${PORTNAME}-${PORTVERSION}
6
PKGNAMESUFFIX=	-plus
7
DISTNAME=	apache-${PORTNAME}-${PORTVERSION}${PKGNAMESUFFIX}
8
9
MAINTAINER=	dmytro@posteo.net
10
COMMENT=	Open-source Java EE application server by Apache based on Tomcat
11
12
LICENSE=	APACHE20
13
14
RUN_DEPENDS=	jsvc:devel/apache-commons-daemon
15
16
USES=		cpe
17
CPE_VENDOR=	apache
18
USE_JAVA=	yes
19
JAVA_VERSION=	1.8+
20
USE_RC_SUBR=	${PKGBASE:C/-/_/}
21
22
NO_ARCH=	yes
23
NO_BUILD=	yes
24
WRKSRC=		${WRKDIR}/apache-${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
25
PLIST_SUB=	T=${TOMEE_PLUS_SUBDIR} \
26
		WWWOWN=${WWWOWN} \
27
		WWWGRP=${WWWGRP}
28
SUB_LIST=	TOMEE_PLUS_HOME=${TOMEE_PLUS_HOME} \
29
		TOMEE_PLUS_USER=${WWWOWN} \
30
		JAVA_HOME=${JAVA_HOME}
31
32
OPTIONS_DEFINE=		HOST_MANAGER MANAGER DOCS ROOT NLS
33
OPTIONS_DEFAULT=	HOST_MANAGER MANAGER ROOT
34
OPTIONS_SUB=		yes
35
36
DOCS_DESC=		Install Documentation web application
37
HOST_MANAGER_DESC=	Install Host Manager application
38
MANAGER_DESC=		Install Manager web application
39
ROOT_DESC=		Install default ROOT web application
40
41
TOMEE_PLUS_SUBDIR?=	apache-${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION:R}
42
TOMEE_PLUS_HOME=	${PREFIX}/${TOMEE_PLUS_SUBDIR}
43
44
post-patch:
45
	@${RM} ${WRKSRC}/bin/commons-daemon-native.tar.gz ${WRKSRC}/bin/commons-daemon.jar ${WRKSRC}/bin/tomcat-native.tar.gz
46
	@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g; s|%%JAVAJARDIR%%|${JAVAJARDIR}|g' ${WRKSRC}/bin/daemon.sh
47
	@${FIND} ${WRKSRC} -name '*.bat' -delete -o -name '*.bat.original' -delete -o -name '*.exe' -delete
48
49
do-install:
50
	@${MKDIR} ${STAGEDIR}${TOMEE_PLUS_HOME}/logs
51
	@${MKDIR} ${STAGEDIR}${TOMEE_PLUS_HOME}/endorsed
52
	@${CP} -R ${WRKSRC}/* ${STAGEDIR}${TOMEE_PLUS_HOME}
53
54
post-install:
55
	@(cd ${STAGEDIR}${TOMEE_PLUS_HOME}/conf &&\
56
		for f in $$(find . -type f -not -name '*.xsd' -a -not -name '*.original'); do ${MV} $$f $$f.sample; done)
57
58
post-install-HOST_MANAGER-on:
59
	@(cd ${STAGEDIR}${TOMEE_PLUS_HOME}/webapps &&\
60
		for f in host-manager/META-INF/context.xml host-manager/WEB-INF/manager.xml host-manager/WEB-INF/web.xml; do \
61
			${MV} $$f $$f.sample; done)
62
63
post-install-MANAGER-on:
64
	@(cd ${STAGEDIR}${TOMEE_PLUS_HOME}/webapps &&\
65
		for f in manager/META-INF/context.xml manager/WEB-INF/web.xml; do \
66
			${MV} $$f $$f.sample; done)
67
68
.include <bsd.port.mk>
(-)b/www/tomee-plus/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1616955268
2
SHA256 (apache-tomee-8.0.6-plus.tar.gz) = 7bfa2ec5f940336d1fed75f9a242b641891bdb5f5e53d311e14988e42f0d5dfb
3
SIZE (apache-tomee-8.0.6-plus.tar.gz) = 67485527
(-)b/www/tomee-plus/files/patch-bin_daemon.sh (+26 lines)
Added Link Here
1
--- bin/daemon.sh.orig	2021-03-28 18:30:08 UTC
2
+++ bin/daemon.sh
3
@@ -114,12 +114,9 @@ fi
4
 test ".$CATALINA_HOME" = . && CATALINA_HOME=`cd "$DIRNAME/.." >/dev/null; pwd`
5
 test ".$CATALINA_BASE" = . && CATALINA_BASE="$CATALINA_HOME"
6
 test ".$CATALINA_MAIN" = . && CATALINA_MAIN=org.apache.catalina.startup.Bootstrap
7
-# If not explicitly set, look for jsvc in CATALINA_BASE first then CATALINA_HOME
8
+# If not explicitly set, look for jsvc in %%PREFIX%%
9
 if [ -z "$JSVC" ]; then
10
-    JSVC="$CATALINA_BASE/bin/jsvc"
11
-    if [ ! -x "$JSVC" ]; then
12
-        JSVC="$CATALINA_HOME/bin/jsvc"
13
-    fi
14
+    JSVC="%%PREFIX%%/bin/jsvc"
15
 fi
16
 # Set the default service-start wait time if necessary
17
 test ".$SERVICE_START_WAIT_TIME" = . && SERVICE_START_WAIT_TIME=10
18
@@ -136,7 +133,7 @@ fi
19
 
20
 # Add on extra jar files to CLASSPATH
21
 test ".$CLASSPATH" != . && CLASSPATH="$CLASSPATH:"
22
-CLASSPATH="$CLASSPATH$CATALINA_HOME/bin/bootstrap.jar:$CATALINA_HOME/bin/commons-daemon.jar"
23
+CLASSPATH="$CLASSPATH$CATALINA_HOME/bin/bootstrap.jar:%%JAVAJARDIR%%/commons-daemon.jar"
24
 
25
 test ".$CATALINA_OUT" = . && CATALINA_OUT="$CATALINA_BASE/logs/catalina-daemon.out"
26
 test ".$CATALINA_TMP" = . && CATALINA_TMP="$CATALINA_BASE/temp"
(-)b/www/tomee-plus/files/tomee_plus.in (+142 lines)
Added Link Here
1
#!/bin/sh
2
3
# PROVIDE: tomee_plus
4
# REQUIRE: LOGIN
5
# KEYWORD: shutdown
6
7
#
8
# Configuration settings for TomEE Plus in /etc/rc.conf:
9
#
10
# tomee_plus_enable (bool):
11
#   Set to "NO" by default.
12
#   Set it to "YES" to enable TomEE Plus
13
#
14
# tomee_plus_catalina_home (str)
15
#   Set to "%%TOMEE_PLUS_HOME%%" by default.
16
#   Set the CATALINA_HOME variable for the TomEE Plus process
17
#
18
# tomee_plus_catalina_base (str)
19
#   Set to "${catalina.home}" by default.
20
#   Set the CATALINA_BASE variable for the TomEE Plus process
21
#
22
# tomee_plus_catalina_tmpdir (str)
23
#   Set to "${catalina.base}/temp" by default.
24
#   Set the CATALINA_TMPDIR variable for the TomEE Plus process
25
#
26
# tomee_plus_stdout (str)
27
#   Set to "${catalina.base}/logs/catalina.out" by default.
28
#   Set the stdout redirection. It may also be '/dev/null', '&1' or '&2'
29
#
30
# tomee_plus_stderr (str)
31
#   Set to "&1" by default.
32
#   Set the stderr redirection. It may also be '/dev/null', '&1' or '&2'
33
#
34
# tomee_plus_pipe_cmd (str):
35
#   Set to "" by default.
36
#   Set a piped command to process stdout/stderr when passthru
37
#
38
# tomee_plus_logging_manager (str):
39
#   Set to "org.apache.juli.ClassLoaderLogManager" by default.
40
#   Set the JUL log manager
41
#
42
# tomee_plus_logging_config (str):
43
#   Set to "${catalina.base}/conf/logging.properties" by default.
44
#   Set the JUL config file
45
#
46
# tomee_plus_java_home (str):
47
#   Set to "%%JAVA_HOME%%" by default.
48
#   Specify the Java VM to use.
49
#
50
# tomee_plus_classpath (str):
51
#   Set to "" by default.
52
#   Addtional classes to add to the CLASSPATH. If set, must start with ':'
53
#
54
# tomee_plus_java_opts (str):
55
#   Set to "" by default.
56
#   Java VM args to use.
57
#
58
# tomee_plus_wait (int):
59
#   Set to "30" by default.
60
#   Set the wait time (in seconds) for TomEE Plus process startup
61
#
62
# tomee_plus_umask (str):
63
#   Set to "0077" by default.
64
#   Sets the umask for TomEE Plus process.
65
#
66
# You may symlink this script with other names to run multiple
67
# instances of tomee with different configurations.
68
#
69
70
. /etc/rc.subr
71
72
case $0 in
73
/etc/rc*)
74
	# during boot (shutdown) $0 is /etc/rc (/etc/rc.shutdown),
75
	# so get the name of the script from $_file
76
	name=$_file
77
	;;
78
*)
79
	name=$0
80
	;;
81
esac
82
83
name=${name##*/}
84
rcvar=${name}_enable
85
86
load_rc_config "${name}"
87
88
eval "${rcvar}=\${${rcvar}:-'NO'}"
89
eval "_tomee_java_home=\${${name}_java_home:-'%%JAVA_HOME%%'}"
90
eval "_tomee_catalina_user=\${${name}_catalina_user:-'%%TOMEE_PLUS_USER%%'}"
91
eval "_tomee_catalina_home=\${${name}_catalina_home:-'%%TOMEE_PLUS_HOME%%'}"
92
eval "_tomee_catalina_base=\${${name}_catalina_base:-'${_tomee_catalina_home}'}"
93
eval "_tomee_catalina_tmpdir=\${${name}_catalina_tmpdir:-'${_tomee_catalina_base}/temp'}"
94
eval "_tomee_stdout=\${${name}_stdout:-'${_tomee_catalina_base}/logs/catalina.out'}"
95
eval "_tomee_stderr=\${${name}_stderr:-'&1'}"
96
eval "_tomee_pipe_cmd=\${${name}_pipe_cmd:-''}"
97
eval "_tomee_logging_manager=\${${name}_logging_manager:-'org.apache.juli.ClassLoaderLogManager'}"
98
eval "_tomee_logging_config=\${${name}_logging_config:-'${_tomee_catalina_base}/conf/logging.properties'}"
99
eval "_tomee_classpath=\${${name}_classpath:-''}"
100
eval "_tomee_java_opts=\${${name}_java_opts:-''}"
101
eval "_tomee_wait=\${${name}_wait:-'30'}"
102
eval "_tomee_umask=\${${name}_umask:-'0077'}"
103
104
pidfile="/var/run/${name}.pid"
105
106
required_files="${_tomee_catalina_base}/conf/server.xml"
107
required_dirs="${_tomee_catalina_tmpdir}"
108
109
extra_commands="reload"
110
111
_tomee_java_version=`${_tomee_java_home}/bin/java -version 2>&1 | /usr/bin/awk -F '"' '/version/ {print $2}'`
112
113
case "${_tomee_java_version}" in
114
	9* | 1[0-9]* )
115
		_tomee_endorsed_dirs_option=
116
		;;
117
	*)
118
		_tomee_endorsed_dirs_option="-Djava.endorsed.dirs='${_tomee_catalina_home}/endorsed'"
119
		;;
120
esac
121
122
command="%%LOCALBASE%%/bin/jsvc"
123
command_args="-java-home '${_tomee_java_home}' \
124
	-server \
125
	-user ${_tomee_catalina_user} \
126
	-umask ${_tomee_umask} \
127
	-pidfile '${pidfile}' \
128
	-wait ${_tomee_wait} \
129
	-outfile '${_tomee_stdout}' \
130
	-errfile '${_tomee_stderr}' \
131
	-classpath '${_tomee_catalina_home}/bin/bootstrap.jar:%%LOCALBASE%%/share/java/classes/commons-daemon.jar:${_tomee_catalina_home}/bin/tomcat-juli.jar${_tomee_classpath}' \
132
	-Djava.util.logging.manager=${_tomee_logging_manager} \
133
	-Djava.util.logging.config.file='${_tomee_logging_config}' \
134
	${_tomee_java_opts} \
135
	${_tomee_endorsed_dirs_option} \
136
	-Dcatalina.home='${_tomee_catalina_home}' \
137
	-Dcatalina.base='${_tomee_catalina_base}' \
138
	-Djava.io.tmpdir='${_tomee_catalina_tmpdir}' \
139
	org.apache.catalina.startup.Bootstrap \
140
	${_tomee_pipe_cmd}"
141
142
run_rc_command "$1"
(-)b/www/tomee-plus/pkg-descr (+6 lines)
Added Link Here
1
Apache TomEE Plus is the Java EE 8 application server based on Apache
2
Tomcat. The "Plus" distribution implements all the Java EE specifications,
3
including JAX-WS and JMS.
4
5
6
WWW: http://tomee.apache.org/
(-)b/www/tomee-plus/pkg-plist (+437 lines)
Added Link Here
1
%%T%%/bin/bootstrap.jar
2
%%T%%/bin/catalina-tasks.xml
3
%%T%%/bin/catalina.sh
4
%%T%%/bin/catalina.sh.original
5
%%T%%/bin/ciphers.sh
6
%%T%%/bin/configtest.sh
7
%%T%%/bin/daemon.sh
8
%%T%%/bin/digest.sh
9
%%T%%/bin/makebase.sh
10
%%T%%/bin/service.readme.txt
11
%%T%%/bin/setclasspath.sh
12
%%T%%/bin/shutdown.sh
13
%%T%%/bin/startup.sh
14
%%T%%/bin/tomcat-juli.jar
15
%%T%%/bin/tomee.sh
16
%%T%%/bin/tool-wrapper.sh
17
%%T%%/bin/version.sh
18
%%T%%/BUILDING.txt
19
%%T%%/CONTRIBUTING.md
20
%%T%%/lib/activemq-broker-5.16.0.jar
21
%%T%%/lib/activemq-client-5.16.0.jar
22
%%T%%/lib/activemq-jdbc-store-5.16.0.jar
23
%%T%%/lib/activemq-kahadb-store-5.16.0.jar
24
%%T%%/lib/activemq-openwire-legacy-5.16.0.jar
25
%%T%%/lib/activemq-protobuf-1.1.jar
26
%%T%%/lib/activemq-ra-5.16.0.jar
27
%%T%%/lib/batchee-jbatch-0.5-incubating.jar
28
%%T%%/lib/bcprov-jdk15on-1.67.jar
29
%%T%%/lib/bval-jsr-2.0.5.jar
30
%%T%%/lib/catalina-ant.jar
31
%%T%%/lib/catalina-ha.jar
32
%%T%%/lib/catalina-ssi.jar
33
%%T%%/lib/catalina-storeconfig.jar
34
%%T%%/lib/catalina-tribes.jar
35
%%T%%/lib/catalina.jar
36
%%T%%/lib/commons-beanutils-1.9.4.jar
37
%%T%%/lib/commons-cli-1.4.jar
38
%%T%%/lib/commons-codec-1.15.jar
39
%%T%%/lib/commons-collections-3.2.2.jar
40
%%T%%/lib/commons-collections4-4.4.jar
41
%%T%%/lib/commons-dbcp2-2.1.jar
42
%%T%%/lib/commons-digester-1.8.jar
43
%%T%%/lib/commons-jcs-core-2.1.jar
44
%%T%%/lib/commons-jcs-jcache-2.1.jar
45
%%T%%/lib/commons-lang3-3.11.jar
46
%%T%%/lib/commons-logging-1.2.jar
47
%%T%%/lib/commons-pool2-2.3.jar
48
%%T%%/lib/cryptacular-1.2.4.jar
49
%%T%%/lib/cxf-core-3.3.8.jar
50
%%T%%/lib/cxf-rt-bindings-soap-3.3.8.jar
51
%%T%%/lib/cxf-rt-bindings-xml-3.3.8.jar
52
%%T%%/lib/cxf-rt-databinding-jaxb-3.3.8.jar
53
%%T%%/lib/cxf-rt-frontend-jaxrs-3.3.8.jar
54
%%T%%/lib/cxf-rt-frontend-jaxws-3.3.8.jar
55
%%T%%/lib/cxf-rt-frontend-simple-3.3.8.jar
56
%%T%%/lib/cxf-rt-management-3.3.8.jar
57
%%T%%/lib/cxf-rt-rs-client-3.3.8.jar
58
%%T%%/lib/cxf-rt-rs-extension-providers-3.3.8.jar
59
%%T%%/lib/cxf-rt-rs-extension-search-3.3.8.jar
60
%%T%%/lib/cxf-rt-rs-json-basic-3.3.8.jar
61
%%T%%/lib/cxf-rt-rs-mp-client-3.3.8.jar
62
%%T%%/lib/cxf-rt-rs-security-cors-3.3.8.jar
63
%%T%%/lib/cxf-rt-rs-security-jose-3.3.8.jar
64
%%T%%/lib/cxf-rt-rs-security-jose-jaxrs-3.3.8.jar
65
%%T%%/lib/cxf-rt-rs-security-oauth2-3.3.8.jar
66
%%T%%/lib/cxf-rt-rs-service-description-3.3.8.jar
67
%%T%%/lib/cxf-rt-rs-sse-3.3.8.jar
68
%%T%%/lib/cxf-rt-security-3.3.8.jar
69
%%T%%/lib/cxf-rt-security-saml-3.3.8.jar
70
%%T%%/lib/cxf-rt-transports-http-3.3.8.jar
71
%%T%%/lib/cxf-rt-ws-addr-3.3.8.jar
72
%%T%%/lib/cxf-rt-ws-policy-3.3.8.jar
73
%%T%%/lib/cxf-rt-ws-security-3.3.8.jar
74
%%T%%/lib/cxf-rt-wsdl-3.3.8.jar
75
%%T%%/lib/ecj-4.17.jar
76
%%T%%/lib/el-api.jar
77
%%T%%/lib/FastInfoset-1.2.16.jar
78
%%T%%/lib/geronimo-config-impl-1.2.1.jar
79
%%T%%/lib/geronimo-connector-3.1.4.jar
80
%%T%%/lib/geronimo-health-1.0.1.jar
81
%%T%%/lib/geronimo-health-common-1.0.1.jar
82
%%T%%/lib/geronimo-javamail_1.6_mail-1.0.0.jar
83
%%T%%/lib/geronimo-metrics-1.0.2.jar
84
%%T%%/lib/geronimo-metrics-common-1.0.2.jar
85
%%T%%/lib/geronimo-openapi-impl-1.0.12.jar
86
%%T%%/lib/geronimo-opentracing-1.0.0.jar
87
%%T%%/lib/geronimo-transaction-3.1.4.jar
88
%%T%%/lib/hawtbuf-1.11.jar
89
%%T%%/lib/howl-1.0.1-1.jar
90
%%T%%/lib/hsqldb-2.3.2.jar
91
%%T%%/lib/istack-commons-runtime-3.0.8.jar
92
%%T%%/lib/jackson-annotations-2.12.0-rc1.jar
93
%%T%%/lib/jackson-core-2.12.0-rc1.jar
94
%%T%%/lib/jackson-databind-2.12.0-rc1.jar
95
%%T%%/lib/jackson-dataformat-yaml-2.12.0-rc1.jar
96
%%T%%/lib/jakarta.activation-1.2.1.jar
97
%%T%%/lib/jakarta.xml.bind-api-2.3.2.jar
98
%%T%%/lib/jasper-el.jar
99
%%T%%/lib/jasper.jar
100
%%T%%/lib/jaspic-api.jar
101
%%T%%/lib/jasypt-1.9.3.jar
102
%%T%%/lib/java-support-7.3.0.jar
103
%%T%%/lib/javaee-api-8.0-5.jar
104
%%T%%/lib/jaxb-runtime-2.3.2.jar
105
%%T%%/lib/joda-time-2.9.jar
106
%%T%%/lib/johnzon-core-1.2.9.jar
107
%%T%%/lib/johnzon-jaxrs-1.2.9.jar
108
%%T%%/lib/johnzon-jsonb-1.2.9.jar
109
%%T%%/lib/johnzon-jsonp-strict-1.2.9.jar
110
%%T%%/lib/johnzon-mapper-1.2.9.jar
111
%%T%%/lib/jose4j-0.6.0.jar
112
%%T%%/lib/jsp-api.jar
113
%%T%%/lib/mbean-annotation-api-8.0.6.jar
114
%%T%%/lib/microprofile-config-api-1.3.jar
115
%%T%%/lib/microprofile-fault-tolerance-api-1.1.4.jar
116
%%T%%/lib/microprofile-health-api-1.0.jar
117
%%T%%/lib/microprofile-jwt-auth-api-1.1.1.jar
118
%%T%%/lib/microprofile-metrics-api-1.1.1.jar
119
%%T%%/lib/microprofile-openapi-api-1.1.2.jar
120
%%T%%/lib/microprofile-opentracing-api-1.1.2.jar
121
%%T%%/lib/microprofile-rest-client-api-1.3.3.jar
122
%%T%%/lib/mimepull-1.9.11.jar
123
%%T%%/lib/mp-common-8.0.6.jar
124
%%T%%/lib/mp-jwt-8.0.6.jar
125
%%T%%/lib/myfaces-api-2.3.7.jar
126
%%T%%/lib/myfaces-impl-2.3.7.jar
127
%%T%%/lib/neethi-3.0.3.jar
128
%%T%%/lib/openejb-api-8.0.6.jar
129
%%T%%/lib/openejb-client-8.0.6.jar
130
%%T%%/lib/openejb-core-8.0.6.jar
131
%%T%%/lib/openejb-cxf-8.0.6.jar
132
%%T%%/lib/openejb-cxf-rs-8.0.6.jar
133
%%T%%/lib/openejb-cxf-transport-8.0.6.jar
134
%%T%%/lib/openejb-ejbd-8.0.6.jar
135
%%T%%/lib/openejb-hsql-8.0.6.jar
136
%%T%%/lib/openejb-http-8.0.6.jar
137
%%T%%/lib/openejb-javaagent.jar
138
%%T%%/lib/openejb-jee-8.0.6.jar
139
%%T%%/lib/openejb-jee-accessors-8.0.6.jar
140
%%T%%/lib/openejb-jpa-integration-8.0.6.jar
141
%%T%%/lib/openejb-loader-8.0.6.jar
142
%%T%%/lib/openejb-rest-8.0.6.jar
143
%%T%%/lib/openejb-server-8.0.6.jar
144
%%T%%/lib/openejb-webservices-8.0.6.jar
145
%%T%%/lib/openjpa-3.1.2.jar
146
%%T%%/lib/opensaml-core-3.3.1.jar
147
%%T%%/lib/opensaml-profile-api-3.3.1.jar
148
%%T%%/lib/opensaml-saml-api-3.3.1.jar
149
%%T%%/lib/opensaml-saml-impl-3.3.1.jar
150
%%T%%/lib/opensaml-security-api-3.3.1.jar
151
%%T%%/lib/opensaml-security-impl-3.3.1.jar
152
%%T%%/lib/opensaml-soap-api-3.3.1.jar
153
%%T%%/lib/opensaml-xacml-api-3.3.1.jar
154
%%T%%/lib/opensaml-xacml-impl-3.3.1.jar
155
%%T%%/lib/opensaml-xacml-saml-api-3.3.1.jar
156
%%T%%/lib/opensaml-xacml-saml-impl-3.3.1.jar
157
%%T%%/lib/opensaml-xmlsec-api-3.3.1.jar
158
%%T%%/lib/opensaml-xmlsec-impl-3.3.1.jar
159
%%T%%/lib/opentracing-api-0.31.0.jar
160
%%T%%/lib/openwebbeans-ee-2.0.12.jar
161
%%T%%/lib/openwebbeans-ee-common-2.0.12.jar
162
%%T%%/lib/openwebbeans-ejb-2.0.12.jar
163
%%T%%/lib/openwebbeans-el22-2.0.12.jar
164
%%T%%/lib/openwebbeans-impl-2.0.12.jar
165
%%T%%/lib/openwebbeans-jsf-2.0.12.jar
166
%%T%%/lib/openwebbeans-spi-2.0.12.jar
167
%%T%%/lib/openwebbeans-web-2.0.12.jar
168
%%T%%/lib/org.osgi.annotation.versioning-1.0.0.jar
169
%%T%%/lib/quartz-2.2.4.jar
170
%%T%%/lib/quartz-openejb-shade-2.2.4.jar
171
%%T%%/lib/saaj-impl-1.5.1.jar
172
%%T%%/lib/safeguard-impl-1.2.1.jar
173
%%T%%/lib/serp-1.15.1.jar
174
%%T%%/lib/servlet-api.jar
175
%%T%%/lib/slf4j-api-1.7.21.jar
176
%%T%%/lib/slf4j-jdk14-1.7.21.jar
177
%%T%%/lib/snakeyaml-1.27.jar
178
%%T%%/lib/stax-ex-1.8.1.jar
179
%%T%%/lib/stax2-api-3.1.4.jar
180
%%T%%/lib/swizzle-stream-1.6.2.jar
181
%%T%%/lib/sxc-jaxb-core-0.8.jar
182
%%T%%/lib/sxc-runtime-0.8.jar
183
%%T%%/lib/taglibs-shade-8.0.6.jar
184
%%T%%/lib/tomcat-api.jar
185
%%T%%/lib/tomcat-coyote.jar
186
%%T%%/lib/tomcat-dbcp.jar
187
%%T%%/lib/tomcat-jdbc.jar
188
%%T%%/lib/tomcat-jni.jar
189
%%T%%/lib/tomcat-util-scan.jar
190
%%T%%/lib/tomcat-util.jar
191
%%T%%/lib/tomcat-websocket.jar
192
%%T%%/lib/tomee-catalina-8.0.6.jar
193
%%T%%/lib/tomee-common-8.0.6.jar
194
%%T%%/lib/tomee-config-8.0.6.jar
195
%%T%%/lib/tomee-jaxrs-8.0.6.jar
196
%%T%%/lib/tomee-jdbc-8.0.6.jar
197
%%T%%/lib/tomee-loader-8.0.6.jar
198
%%T%%/lib/tomee-mojarra-8.0.6.jar
199
%%T%%/lib/tomee-myfaces-8.0.6.jar
200
%%T%%/lib/tomee-security-8.0.6.jar
201
%%T%%/lib/tomee-webapp-8.0.6.jar
202
%%T%%/lib/tomee-webservices-8.0.6.jar
203
%%T%%/lib/txw2-2.3.2.jar
204
%%T%%/lib/websocket-api.jar
205
%%T%%/lib/woodstox-core-5.0.3.jar
206
%%T%%/lib/wsdl4j-1.6.3.jar
207
%%T%%/lib/wss4j-bindings-2.2.5.jar
208
%%T%%/lib/wss4j-policy-2.2.5.jar
209
%%T%%/lib/wss4j-ws-security-common-2.2.5.jar
210
%%T%%/lib/wss4j-ws-security-dom-2.2.5.jar
211
%%T%%/lib/wss4j-ws-security-policy-stax-2.2.5.jar
212
%%T%%/lib/wss4j-ws-security-stax-2.2.5.jar
213
%%T%%/lib/xbean-asm7-shaded-4.14.jar
214
%%T%%/lib/xbean-asm8-shaded-4.17.jar
215
%%T%%/lib/xbean-bundleutils-4.14.jar
216
%%T%%/lib/xbean-finder-shaded-4.14.jar
217
%%T%%/lib/xbean-naming-4.14.jar
218
%%T%%/lib/xbean-reflect-4.14.jar
219
%%T%%/lib/xml-resolver-1.2.jar
220
%%T%%/lib/xmlschema-core-2.2.5.jar
221
%%T%%/lib/xmlsec-2.1.4.jar
222
%%T%%/LICENSE
223
%%T%%/NOTICE
224
%%T%%/README.md
225
%%T%%/RELEASE-NOTES
226
%%T%%/RUNNING.txt
227
%%NLS%%%%T%%/lib/tomcat-i18n-cs.jar
228
%%NLS%%%%T%%/lib/tomcat-i18n-de.jar
229
%%NLS%%%%T%%/lib/tomcat-i18n-es.jar
230
%%NLS%%%%T%%/lib/tomcat-i18n-fr.jar
231
%%NLS%%%%T%%/lib/tomcat-i18n-ja.jar
232
%%NLS%%%%T%%/lib/tomcat-i18n-ko.jar
233
%%NLS%%%%T%%/lib/tomcat-i18n-pt-BR.jar
234
%%NLS%%%%T%%/lib/tomcat-i18n-ru.jar
235
%%NLS%%%%T%%/lib/tomcat-i18n-zh-CN.jar
236
@dir %%T%%/endorsed
237
@postunexec [ ! -d %D/%%T%% ] || echo If permanently deleting this package, %D/%%T%% must be removed manually
238
@owner %%WWWOWN%%
239
@group %%WWWGRP%%
240
@dir %%T%%/conf
241
@dir %%T%%/logs
242
@dir %%T%%/temp
243
@dir %%T%%/webapps
244
@dir %%T%%/work
245
@sample %%T%%/conf/catalina.policy.sample
246
@sample %%T%%/conf/catalina.properties.sample
247
@sample %%T%%/conf/context.xml.sample
248
@sample %%T%%/conf/jaspic-providers.xml.sample
249
%%T%%/conf/jaspic-providers.xsd
250
@sample %%T%%/conf/logging.properties.sample
251
@sample %%T%%/conf/server.xml.sample
252
%%T%%/conf/server.xml.original
253
@sample %%T%%/conf/system.properties.sample
254
@sample %%T%%/conf/tomcat-users.xml.sample
255
%%T%%/conf/tomcat-users.xml.original
256
%%T%%/conf/tomcat-users.xsd
257
@sample %%T%%/conf/tomee.xml.sample
258
@sample %%T%%/conf/web.xml.sample
259
%%T%%/temp/safeToDelete.tmp
260
%%DOCS%%%%T%%/webapps/docs/aio.html
261
%%DOCS%%%%T%%/webapps/docs/annotationapi/index.html
262
%%DOCS%%%%T%%/webapps/docs/api/index.html
263
%%DOCS%%%%T%%/webapps/docs/appdev/build.xml.txt
264
%%DOCS%%%%T%%/webapps/docs/appdev/deployment.html
265
%%DOCS%%%%T%%/webapps/docs/appdev/index.html
266
%%DOCS%%%%T%%/webapps/docs/appdev/installation.html
267
%%DOCS%%%%T%%/webapps/docs/appdev/introduction.html
268
%%DOCS%%%%T%%/webapps/docs/appdev/processes.html
269
%%DOCS%%%%T%%/webapps/docs/appdev/sample/build.xml
270
%%DOCS%%%%T%%/webapps/docs/appdev/sample/docs/README.txt
271
%%DOCS%%%%T%%/webapps/docs/appdev/sample/index.html
272
%%DOCS%%%%T%%/webapps/docs/appdev/sample/sample.war
273
%%DOCS%%%%T%%/webapps/docs/appdev/sample/src/mypackage/Hello.java
274
%%DOCS%%%%T%%/webapps/docs/appdev/sample/web/hello.jsp
275
%%DOCS%%%%T%%/webapps/docs/appdev/sample/web/images/tomcat.gif
276
%%DOCS%%%%T%%/webapps/docs/appdev/sample/web/index.html
277
%%DOCS%%%%T%%/webapps/docs/appdev/sample/web/WEB-INF/web.xml
278
%%DOCS%%%%T%%/webapps/docs/appdev/source.html
279
%%DOCS%%%%T%%/webapps/docs/appdev/web.xml.txt
280
%%DOCS%%%%T%%/webapps/docs/apr.html
281
%%DOCS%%%%T%%/webapps/docs/architecture/index.html
282
%%DOCS%%%%T%%/webapps/docs/architecture/overview.html
283
%%DOCS%%%%T%%/webapps/docs/architecture/requestProcess.html
284
%%DOCS%%%%T%%/webapps/docs/architecture/requestProcess/authentication-process.png
285
%%DOCS%%%%T%%/webapps/docs/architecture/requestProcess/request-process.png
286
%%DOCS%%%%T%%/webapps/docs/architecture/startup.html
287
%%DOCS%%%%T%%/webapps/docs/architecture/startup/serverStartup.pdf
288
%%DOCS%%%%T%%/webapps/docs/architecture/startup/serverStartup.txt
289
%%DOCS%%%%T%%/webapps/docs/balancer-howto.html
290
%%DOCS%%%%T%%/webapps/docs/building.html
291
%%DOCS%%%%T%%/webapps/docs/BUILDING.txt
292
%%DOCS%%%%T%%/webapps/docs/cdi.html
293
%%DOCS%%%%T%%/webapps/docs/cgi-howto.html
294
%%DOCS%%%%T%%/webapps/docs/changelog.html
295
%%DOCS%%%%T%%/webapps/docs/class-loader-howto.html
296
%%DOCS%%%%T%%/webapps/docs/cluster-howto.html
297
%%DOCS%%%%T%%/webapps/docs/comments.html
298
%%DOCS%%%%T%%/webapps/docs/config/ajp.html
299
%%DOCS%%%%T%%/webapps/docs/config/automatic-deployment.html
300
%%DOCS%%%%T%%/webapps/docs/config/cluster-channel.html
301
%%DOCS%%%%T%%/webapps/docs/config/cluster-deployer.html
302
%%DOCS%%%%T%%/webapps/docs/config/cluster-interceptor.html
303
%%DOCS%%%%T%%/webapps/docs/config/cluster-listener.html
304
%%DOCS%%%%T%%/webapps/docs/config/cluster-manager.html
305
%%DOCS%%%%T%%/webapps/docs/config/cluster-membership.html
306
%%DOCS%%%%T%%/webapps/docs/config/cluster-receiver.html
307
%%DOCS%%%%T%%/webapps/docs/config/cluster-sender.html
308
%%DOCS%%%%T%%/webapps/docs/config/cluster-valve.html
309
%%DOCS%%%%T%%/webapps/docs/config/cluster.html
310
%%DOCS%%%%T%%/webapps/docs/config/context.html
311
%%DOCS%%%%T%%/webapps/docs/config/cookie-processor.html
312
%%DOCS%%%%T%%/webapps/docs/config/credentialhandler.html
313
%%DOCS%%%%T%%/webapps/docs/config/engine.html
314
%%DOCS%%%%T%%/webapps/docs/config/executor.html
315
%%DOCS%%%%T%%/webapps/docs/config/filter.html
316
%%DOCS%%%%T%%/webapps/docs/config/globalresources.html
317
%%DOCS%%%%T%%/webapps/docs/config/host.html
318
%%DOCS%%%%T%%/webapps/docs/config/http.html
319
%%DOCS%%%%T%%/webapps/docs/config/http2.html
320
%%DOCS%%%%T%%/webapps/docs/config/index.html
321
%%DOCS%%%%T%%/webapps/docs/config/jar-scan-filter.html
322
%%DOCS%%%%T%%/webapps/docs/config/jar-scanner.html
323
%%DOCS%%%%T%%/webapps/docs/config/jaspic.html
324
%%DOCS%%%%T%%/webapps/docs/config/listeners.html
325
%%DOCS%%%%T%%/webapps/docs/config/loader.html
326
%%DOCS%%%%T%%/webapps/docs/config/manager.html
327
%%DOCS%%%%T%%/webapps/docs/config/realm.html
328
%%DOCS%%%%T%%/webapps/docs/config/resources.html
329
%%DOCS%%%%T%%/webapps/docs/config/server.html
330
%%DOCS%%%%T%%/webapps/docs/config/service.html
331
%%DOCS%%%%T%%/webapps/docs/config/sessionidgenerator.html
332
%%DOCS%%%%T%%/webapps/docs/config/systemprops.html
333
%%DOCS%%%%T%%/webapps/docs/config/valve.html
334
%%DOCS%%%%T%%/webapps/docs/connectors.html
335
%%DOCS%%%%T%%/webapps/docs/default-servlet.html
336
%%DOCS%%%%T%%/webapps/docs/deployer-howto.html
337
%%DOCS%%%%T%%/webapps/docs/developers.html
338
%%DOCS%%%%T%%/webapps/docs/elapi/index.html
339
%%DOCS%%%%T%%/webapps/docs/graal.html
340
%%DOCS%%%%T%%/webapps/docs/host-manager-howto.html
341
%%DOCS%%%%T%%/webapps/docs/html-host-manager-howto.html
342
%%DOCS%%%%T%%/webapps/docs/html-manager-howto.html
343
%%DOCS%%%%T%%/webapps/docs/images/add.gif
344
%%DOCS%%%%T%%/webapps/docs/images/asf-logo.svg
345
%%DOCS%%%%T%%/webapps/docs/images/code.gif
346
%%DOCS%%%%T%%/webapps/docs/images/cors-flowchart.png
347
%%DOCS%%%%T%%/webapps/docs/images/design.gif
348
%%DOCS%%%%T%%/webapps/docs/images/docs-stylesheet.css
349
%%DOCS%%%%T%%/webapps/docs/images/docs.gif
350
%%DOCS%%%%T%%/webapps/docs/images/fix.gif
351
%%DOCS%%%%T%%/webapps/docs/images/fonts/fonts.css
352
%%DOCS%%%%T%%/webapps/docs/images/fonts/OpenSans400.woff
353
%%DOCS%%%%T%%/webapps/docs/images/fonts/OpenSans400italic.woff
354
%%DOCS%%%%T%%/webapps/docs/images/fonts/OpenSans600.woff
355
%%DOCS%%%%T%%/webapps/docs/images/fonts/OpenSans600italic.woff
356
%%DOCS%%%%T%%/webapps/docs/images/fonts/OpenSans700.woff
357
%%DOCS%%%%T%%/webapps/docs/images/fonts/OpenSans700italic.woff
358
%%DOCS%%%%T%%/webapps/docs/images/tomcat.gif
359
%%DOCS%%%%T%%/webapps/docs/images/tomcat.png
360
%%DOCS%%%%T%%/webapps/docs/images/update.gif
361
%%DOCS%%%%T%%/webapps/docs/images/void.gif
362
%%DOCS%%%%T%%/webapps/docs/index.html
363
%%DOCS%%%%T%%/webapps/docs/introduction.html
364
%%DOCS%%%%T%%/webapps/docs/jasper-howto.html
365
%%DOCS%%%%T%%/webapps/docs/jaspicapi/index.html
366
%%DOCS%%%%T%%/webapps/docs/jdbc-pool.html
367
%%DOCS%%%%T%%/webapps/docs/jndi-datasource-examples-howto.html
368
%%DOCS%%%%T%%/webapps/docs/jndi-resources-howto.html
369
%%DOCS%%%%T%%/webapps/docs/jspapi/index.html
370
%%DOCS%%%%T%%/webapps/docs/logging.html
371
%%DOCS%%%%T%%/webapps/docs/manager-howto.html
372
%%DOCS%%%%T%%/webapps/docs/maven-jars.html
373
%%DOCS%%%%T%%/webapps/docs/mbeans-descriptors-howto.html
374
%%DOCS%%%%T%%/webapps/docs/mbeans-descriptors.dtd
375
%%DOCS%%%%T%%/webapps/docs/monitoring.html
376
%%DOCS%%%%T%%/webapps/docs/proxy-howto.html
377
%%DOCS%%%%T%%/webapps/docs/realm-howto.html
378
%%DOCS%%%%T%%/webapps/docs/RELEASE-NOTES.txt
379
%%DOCS%%%%T%%/webapps/docs/rewrite.html
380
%%DOCS%%%%T%%/webapps/docs/RUNNING.txt
381
%%DOCS%%%%T%%/webapps/docs/security-howto.html
382
%%DOCS%%%%T%%/webapps/docs/security-manager-howto.html
383
%%DOCS%%%%T%%/webapps/docs/servletapi/index.html
384
%%DOCS%%%%T%%/webapps/docs/setup.html
385
%%DOCS%%%%T%%/webapps/docs/ssi-howto.html
386
%%DOCS%%%%T%%/webapps/docs/ssl-howto.html
387
%%DOCS%%%%T%%/webapps/docs/tribes/developers.html
388
%%DOCS%%%%T%%/webapps/docs/tribes/faq.html
389
%%DOCS%%%%T%%/webapps/docs/tribes/interceptors.html
390
%%DOCS%%%%T%%/webapps/docs/tribes/introduction.html
391
%%DOCS%%%%T%%/webapps/docs/tribes/membership.html
392
%%DOCS%%%%T%%/webapps/docs/tribes/setup.html
393
%%DOCS%%%%T%%/webapps/docs/tribes/status.html
394
%%DOCS%%%%T%%/webapps/docs/tribes/transport.html
395
%%DOCS%%%%T%%/webapps/docs/virtual-hosting-howto.html
396
%%DOCS%%%%T%%/webapps/docs/WEB-INF/web.xml
397
%%DOCS%%%%T%%/webapps/docs/web-socket-howto.html
398
%%DOCS%%%%T%%/webapps/docs/websocketapi/index.html
399
%%DOCS%%%%T%%/webapps/docs/windows-auth-howto.html
400
%%DOCS%%%%T%%/webapps/docs/windows-service-howto.html
401
%%HOST_MANAGER%%%%T%%/webapps/host-manager/css/manager.css
402
%%HOST_MANAGER%%%%T%%/webapps/host-manager/images/asf-logo.svg
403
%%HOST_MANAGER%%%%T%%/webapps/host-manager/images/tomcat.svg
404
%%HOST_MANAGER%%%%T%%/webapps/host-manager/index.jsp
405
%%HOST_MANAGER%%@sample %%T%%/webapps/host-manager/META-INF/context.xml.sample
406
%%HOST_MANAGER%%%%T%%/webapps/host-manager/WEB-INF/jsp/401.jsp
407
%%HOST_MANAGER%%%%T%%/webapps/host-manager/WEB-INF/jsp/403.jsp
408
%%HOST_MANAGER%%%%T%%/webapps/host-manager/WEB-INF/jsp/404.jsp
409
%%HOST_MANAGER%%@sample %%T%%/webapps/host-manager/WEB-INF/manager.xml.sample
410
%%HOST_MANAGER%%@sample %%T%%/webapps/host-manager/WEB-INF/web.xml.sample
411
%%MANAGER%%%%T%%/webapps/manager/css/manager.css
412
%%MANAGER%%%%T%%/webapps/manager/images/asf-logo.svg
413
%%MANAGER%%%%T%%/webapps/manager/images/tomcat.svg
414
%%MANAGER%%%%T%%/webapps/manager/index.jsp
415
%%MANAGER%%@sample %%T%%/webapps/manager/META-INF/context.xml.sample
416
%%MANAGER%%%%T%%/webapps/manager/status.xsd
417
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/401.jsp
418
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/403.jsp
419
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/404.jsp
420
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/connectorCerts.jsp
421
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/connectorCiphers.jsp
422
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/connectorTrustedCerts.jsp
423
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/sessionDetail.jsp
424
%%MANAGER%%%%T%%/webapps/manager/WEB-INF/jsp/sessionsList.jsp
425
%%MANAGER%%@sample %%T%%/webapps/manager/WEB-INF/web.xml.sample
426
%%MANAGER%%%%T%%/webapps/manager/xform.xsl
427
%%ROOT%%%%T%%/webapps/ROOT/asf-logo-wide.svg
428
%%ROOT%%%%T%%/webapps/ROOT/bg-button.png
429
%%ROOT%%%%T%%/webapps/ROOT/bg-middle.png
430
%%ROOT%%%%T%%/webapps/ROOT/bg-nav.png
431
%%ROOT%%%%T%%/webapps/ROOT/bg-upper.png
432
%%ROOT%%%%T%%/webapps/ROOT/favicon.ico
433
%%ROOT%%%%T%%/webapps/ROOT/index.jsp
434
%%ROOT%%%%T%%/webapps/ROOT/RELEASE-NOTES.txt
435
%%ROOT%%%%T%%/webapps/ROOT/tomcat.css
436
%%ROOT%%%%T%%/webapps/ROOT/tomcat.svg
437
%%ROOT%%%%T%%/webapps/ROOT/WEB-INF/web.xml

Return to bug 258438