Skip to content

Commit ebc2c1a

Browse files
committed
Merge branch 'develop' for release
2 parents 8504cce + b5f436d commit ebc2c1a

27 files changed

+3832
-431
lines changed

Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ FROM openjdk:8-jdk-slim as builder
33
RUN apt-get update && apt-get -y install --no-install-recommends --no-upgrade wget
44
USER root
55

6-
ENV ANT_VERSION 1.10.9
6+
ENV ANT_VERSION 1.10.11
77
ENV ANT_HOME /etc/ant-${ANT_VERSION}
88

99
WORKDIR /tmp
1010

11-
RUN wget http://www-us.apache.org/dist/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz \
11+
RUN wget https://downloads.apache.org/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz \
1212
&& mkdir ant-${ANT_VERSION} \
1313
&& tar -zxvf apache-ant-${ANT_VERSION}-bin.tar.gz \
1414
&& mv apache-ant-${ANT_VERSION} ${ANT_HOME} \
@@ -24,12 +24,16 @@ WORKDIR /tmp
2424
COPY . .
2525

2626
RUN ant
27+
RUN wget https://exist-db.org/exist/apps/public-repo/public/shared-resources-0.9.1.xar
28+
#RUN wget https://exist-db.org/exist/apps/public-repo/public/xquery-versioning-module-1.1.5.xar
2729

2830
# START STAGE 2
2931
FROM existdb/existdb:release
32+
#FROM existdb/existdb:5.2.0
3033
#ADD http://exist-db.org/exist/apps/public-repo/public/functx-1.0.1.xar /exist/autodeploy
3134

32-
COPY --from=builder /tmp/build/*.xar /exist/autodeploy
35+
COPY --from=builder /tmp/build/*.xar /exist/autodeploy/
36+
COPY --from=builder /tmp/*.xar /exist/autodeploy/
3337

3438
EXPOSE 8080 8443
3539

Static/version.xql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
xquery version "3.1";
2+
import module namespace stationutil="http://exist-db.org/apps/fdsn-station/modules/stationutil" at "../modules/util.xql";
23

34
declare option exist:serialize "method=text media-type=text/plain";
45

5-
"1.1.50.0"
6+
stationutil:version()
67

Station/A319A.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Station/ABSI.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Station/ACATE.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Station/ACER.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Station/ACOM.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Station/AQT1.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Station/AQU.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Station/ARPR.xml

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)