Last active
July 7, 2021 13:12
-
-
Save wlad/d007e0feac1c2ea6d5510940a5e69f63 to your computer and use it in GitHub Desktop.
EHRbase - Multi Stage Dockerfile Build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo | |
echo "EHRBASE_VERSION: $(cat ehrbase_version)" | |
java -Dspring.profiles.active=docker -jar ehrbase.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM postgres:13.3-alpine AS builder | |
# SHOW POSTGRES DB AND CLIENT VERSION | |
RUN postgres -V && \ | |
psql -V | |
# CREATE CUSTOM DATA DIRECTORY AND CHANGE OWNERSHIP TO POSTGRES USER | |
# SET POSTGRES DATA DIRECTORY TO CUSTOM FOLDER AND INITIALIZE DB | |
RUN mkdir -p ${PGDATA} | |
RUN chown postgres: ${PGDATA} | |
RUN chmod 0700 ${PGDATA} | |
ENV PGDATA="/var/lib/postgresql/pgdata" | |
RUN su - postgres -c "initdb -D ${PGDATA}" | |
# COPY DB SETUP SCRIPT | |
# START DB AND LET THE SCRIPT DO ALL REQUIRED CONFIGURATION | |
COPY base/db-setup/cloud-db-setup.sql /postgres/cloud-db-setup.sql | |
RUN su - postgres -c "pg_ctl -D ${PGDATA} -w start" && \ | |
su - postgres -c "psql < /postgres/cloud-db-setup.sql" && \ | |
su - postgres -c "pg_ctl -D ${PGDATA} -w stop" | |
# INSTALL JAVA 11 JDK | |
RUN apk --no-cache add openjdk11 --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community && \ | |
java --version | |
# INSTALL MAVEN | |
ENV MAVEN_VERSION 3.6.3 | |
ENV MAVEN_HOME /usr/lib/mvn | |
ENV PATH $MAVEN_HOME/bin:$PATH | |
RUN wget http://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz && \ | |
tar -zxvf apache-maven-$MAVEN_VERSION-bin.tar.gz && \ | |
rm apache-maven-$MAVEN_VERSION-bin.tar.gz && \ | |
mv apache-maven-$MAVEN_VERSION /usr/lib/mvn && \ | |
mvn --version | |
# CACHE EHRBASE DEPENDENCIES | |
RUN ls -la | |
COPY ./pom.xml ./pom.xml | |
COPY ./api/pom.xml ./api/pom.xml | |
COPY ./application/pom.xml ./application/pom.xml | |
COPY ./base/pom.xml ./base/pom.xml | |
COPY ./jooq-pq/pom.xml ./jooq-pq/pom.xml | |
COPY ./rest-ehr-scape/pom.xml ./rest-ehr-scape/pom.xml | |
COPY ./rest-openehr/pom.xml ./rest-openehr/pom.xml | |
COPY ./service/pom.xml ./service/pom.xml | |
COPY ./test-coverage/pom.xml ./test-coverage/pom.xml | |
COPY ./api/src ./api/src | |
COPY ./application/src ./application/src | |
COPY ./base/src ./base/src | |
COPY ./jooq-pq/src ./jooq-pq/src | |
COPY ./rest-ehr-scape/src ./rest-ehr-scape/src | |
COPY ./rest-openehr/src ./rest-openehr/src | |
COPY ./service/src ./service/src | |
RUN mvn compile dependency:go-offline \ | |
-Dflyway.skip=true \ | |
-Djooq.codegen.skip=true \ | |
-Dmaven.main.skip | |
# START DB AND COMPILE EHRBASE | |
RUN su - postgres -c "pg_ctl -D ${PGDATA} -w start" && \ | |
mvn compile && \ | |
su - postgres -c "pg_ctl -D ${PGDATA} -w stop" | |
# START DB AND PACKAGE EHRBASE .JAR | |
RUN ls -la | |
RUN su - postgres -c "pg_ctl -D ${PGDATA} -w start" && \ | |
mvn package -Dmaven.javadoc.skip=true -Djacoco.skip=true && \ | |
su - postgres -c "pg_ctl -D ${PGDATA} -w stop" | |
# WRITE EHRBASE VERSION TO A FILE | |
# MOVE EHRBASE.jar TO /tmp FOLDER | |
RUN ls -la | |
RUN EHRBASE_VERSION=$(mvn -q -Dexec.executable="echo" \ | |
-Dexec.args='${project.version}' \ | |
--non-recursive exec:exec) && \ | |
echo ${EHRBASE_VERSION} > /tmp/ehrbase_version && \ | |
cp application/target/application-${EHRBASE_VERSION}.jar /tmp/ehrbase.jar | |
# FINAL EHRBASE IMAGE WITH JRE AND JAR ONLY | |
FROM openjdk:11-jre-slim AS final | |
COPY --from=builder /tmp/ehrbase.jar . | |
COPY --from=builder /tmp/ehrbase_version . | |
COPY .docker_scripts/docker-entrypoint.sh . | |
RUN chmod +x ./docker-entrypoint.sh | |
RUN echo "EHRBASE_VERSION: $(cat ehrbase_version)" | |
# SET DEFAULT ENVS (CAN BE OVERRITEN FROM CLI VIA --build-arg FLAG) | |
ARG DB_URL=jdbc:postgresql://ehrdb:5432/ehrbase | |
ARG DB_USER="ehrbase" | |
ARG DB_PASS="ehrbase" | |
ARG SERVER_NODENAME=local.ehrbase.org | |
# THESE ENVIRONMENT VARIABLES ARE ALSO APPLIED TO STARTUP OF THE CONTAINER | |
# AND CAN BE OVERWRITTEN BY SETTING IT WITH THE '-e' FLAG ON 'docker run' COMMAND | |
ENV EHRBASE_VERSION=${EHRBASE_VERSION} | |
ENV DB_USER=${DB_USER} | |
ENV DB_PASS=${DB_PASS} | |
ENV DB_URL=${DB_URL} | |
ENV SERVER_NODENAME=${SERVER_NODENAME} | |
# SECURITY ENVs | |
ENV SECURITY_AUTHTYPE="NONE" | |
ENV SECURITY_AUTHUSER="ehrbase-user" | |
ENV SECURITY_AUTHPASSWORD="SuperSecretPassword" | |
ENV SECURITY_AUTHADMINUSER="ehrbase-admin" | |
ENV SECURITY_AUTHADMINPASSWORD="EvenMoreSecretPassword" | |
ENV SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUERURI="" | |
# STATUS METRIC ENDPOINT ENVs | |
ENV MANAGEMENT_ENDPOINTS_WEB_EXPOSURE="env,health,info,metrics,prometheus" | |
ENV MANAGEMENT_ENDPOINTS_WEB_BASEPATH="/status" | |
ENV MANAGEMENT_ENDPOINT_ENV_ENABLED="false" | |
ENV MANAGEMENT_ENDPOINT_HEALTH_ENABLED="false" | |
ENV MANAGEMENT_ENDPOINT_HEALTH_DATASOURCE_ENABLED="false" | |
ENV MANAGEMENT_ENDPOINT_INFO_ENABLED="false" | |
ENV MANAGEMENT_ENDPOINT_METRICS_ENABLED="false" | |
ENV MANAGEMENT_ENDPOINT_PROMETHEUS_ENABLED="false" | |
ENV MANAGEMENT_ENDPOINT_HEALTH_PROBES_ENABLED="true" | |
EXPOSE 8080 | |
CMD ./docker-entrypoint.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(wlad㉿pc)-[~/…/ec/vs/github/ehrbase] | |
└─$ docker build -t ehrbase/ehrbase:13.3 . | |
Sending build context to Docker daemon 185.9MB | |
Step 1/71 : FROM postgres:13.3-alpine AS builder | |
13.3-alpine: Pulling from library/postgres | |
5843afab3874: Pull complete | |
525703b16f79: Pull complete | |
86f8340bd3d9: Pull complete | |
aebe2e63a0a2: Pull complete | |
f19101b5a9a6: Pull complete | |
c356e016a868: Pull complete | |
f8af050c4eff: Pull complete | |
993925c99077: Pull complete | |
Digest: sha256:ff384947eb9f5939b7fc5ef2ce620fad088999590973f05e6812037d163c770e | |
Status: Downloaded newer image for postgres:13.3-alpine | |
---> d3a70afcf848 | |
Step 2/71 : RUN postgres -V && psql -V | |
---> Running in 4e094bc9f3d4 | |
postgres (PostgreSQL) 13.3 | |
psql (PostgreSQL) 13.3 | |
Removing intermediate container 4e094bc9f3d4 | |
---> 0a07737e239e | |
Step 3/71 : RUN mkdir -p ${PGDATA} | |
---> Running in 0574816b7c09 | |
Removing intermediate container 0574816b7c09 | |
---> f2a1930757df | |
Step 4/71 : RUN chown postgres: ${PGDATA} | |
---> Running in 3594bf656cb6 | |
Removing intermediate container 3594bf656cb6 | |
---> 05cea4ce3fab | |
Step 5/71 : RUN chmod 0700 ${PGDATA} | |
---> Running in 69f2a23d8cd9 | |
Removing intermediate container 69f2a23d8cd9 | |
---> 2b856b89e2f5 | |
Step 6/71 : ENV PGDATA="/var/lib/postgresql/pgdata" | |
---> Running in 596fc7c73210 | |
Removing intermediate container 596fc7c73210 | |
---> 62050ee42b50 | |
Step 7/71 : RUN su - postgres -c "initdb -D ${PGDATA}" | |
---> Running in 68186195f84d | |
The files belonging to this database system will be owned by user "postgres". | |
This user must also own the server process. | |
The database cluster will be initialized with locales | |
COLLATE: C | |
CTYPE: C.UTF-8 | |
MESSAGES: C | |
MONETARY: C | |
NUMERIC: C | |
TIME: C | |
The default database encoding has accordingly been set to "UTF8". | |
The default text search configuration will be set to "english". | |
Data page checksums are disabled. | |
creating directory /var/lib/postgresql/pgdata ... ok | |
creating subdirectories ... ok | |
selecting dynamic shared memory implementation ... posix | |
selecting default max_connections ... 100 | |
selecting default shared_buffers ... 128MB | |
selecting default time zone ... UTC | |
creating configuration files ... ok | |
running bootstrap script ... ok | |
performing post-bootstrap initialization ... sh: locale: not found | |
2021-07-07 12:26:53.630 UTC [13] WARNING: no usable system locales were found | |
ok | |
syncing data to disk ... ok | |
Success. You can now start the database server using: | |
pg_ctl -D /var/lib/postgresql/pgdata -l logfile start | |
initdb: warning: enabling "trust" authentication for local connections | |
You can change this by editing pg_hba.conf or using the option -A, or | |
--auth-local and --auth-host, the next time you run initdb. | |
Removing intermediate container 68186195f84d | |
---> 98f815d07ef2 | |
Step 8/71 : COPY base/db-setup/cloud-db-setup.sql /postgres/cloud-db-setup.sql | |
---> 4112179d385b | |
Step 9/71 : RUN su - postgres -c "pg_ctl -D ${PGDATA} -w start" && su - postgres -c "psql < /postgres/cloud-db-setup.sql" && su - postgres -c "pg_ctl -D ${PGDATA} -w stop" | |
---> Running in ec1f3ca63164 | |
waiting for server to start....2021-07-07 12:26:58.118 UTC [11] LOG: starting PostgreSQL 13.3 on x86_64-pc-linux-musl, compiled by gcc (Alpine 10.3.1_git20210424) 10.3.1 20210424, 64-bit | |
2021-07-07 12:26:58.118 UTC [11] LOG: listening on IPv4 address "0.0.0.0", port 5432 | |
2021-07-07 12:26:58.119 UTC [11] LOG: listening on IPv6 address "::", port 5432 | |
2021-07-07 12:26:58.125 UTC [11] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" | |
2021-07-07 12:26:58.133 UTC [12] LOG: database system was shut down at 2021-07-07 12:26:53 UTC | |
2021-07-07 12:26:58.138 UTC [11] LOG: database system is ready to accept connections | |
done | |
server started | |
CREATE ROLE | |
CREATE DATABASE | |
GRANT | |
You are now connected to database "ehrbase" as user "postgres". | |
CREATE SCHEMA | |
CREATE SCHEMA | |
CREATE EXTENSION | |
CREATE EXTENSION | |
ALTER DATABASE | |
GRANT | |
CREATE FUNCTION | |
waiting for server to shut down....2021-07-07 12:26:59.417 UTC [11] LOG: received fast shutdown request | |
2021-07-07 12:26:59.421 UTC [11] LOG: aborting any active transactions | |
2021-07-07 12:26:59.422 UTC [11] LOG: background worker "logical replication launcher" (PID 18) exited with exit code 1 | |
2021-07-07 12:26:59.422 UTC [13] LOG: shutting down | |
2021-07-07 12:26:59.536 UTC [11] LOG: database system is shut down | |
done | |
server stopped | |
Removing intermediate container ec1f3ca63164 | |
---> b02ab9e27ed4 | |
Step 10/71 : RUN apk --no-cache add openjdk11 --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community && java --version | |
---> Running in 0a9b220b6559 | |
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | |
fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/main/x86_64/APKINDEX.tar.gz | |
fetch https://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz | |
(1/31) Installing openjdk11-jmods (11.0.11_p9-r0) | |
(2/31) Installing openjdk11-demos (11.0.11_p9-r0) | |
(3/31) Installing openjdk11-doc (11.0.11_p9-r0) | |
(4/31) Installing java-common (0.4-r0) | |
(5/31) Installing p11-kit (0.23.22-r0) | |
(6/31) Installing libtasn1 (4.17.0-r0) | |
(7/31) Installing p11-kit-trust (0.23.22-r0) | |
(8/31) Installing ca-certificates (20191127-r5) | |
(9/31) Installing java-cacerts (1.0-r1) | |
(10/31) Installing openjdk11-jre-headless (11.0.11_p9-r0) | |
(11/31) Installing libxau (1.0.9-r0) | |
(12/31) Installing libmd (1.0.3-r0) | |
(13/31) Installing libbsd (0.11.3-r0) | |
(14/31) Installing libxdmcp (1.1.3-r0) | |
(15/31) Installing libxcb (1.14-r2) | |
(16/31) Installing libx11 (1.7.2-r0) | |
(17/31) Installing libxext (1.3.4-r0) | |
(18/31) Installing libxi (1.7.10-r0) | |
(19/31) Installing libxrender (0.9.10-r3) | |
(20/31) Installing libxtst (1.2.3-r3) | |
(21/31) Installing alsa-lib (1.2.5-r2) | |
(22/31) Installing brotli-libs (1.0.9-r5) | |
(23/31) Installing libbz2 (1.0.8-r1) | |
(24/31) Installing libpng (1.6.37-r1) | |
(25/31) Installing freetype (2.10.4-r1) | |
(26/31) Installing giflib (5.2.1-r0) | |
(27/31) Installing libjpeg-turbo (2.1.0-r0) | |
(28/31) Installing lcms2 (2.12-r1) | |
(29/31) Installing openjdk11-jre (11.0.11_p9-r0) | |
(30/31) Installing openjdk11-jdk (11.0.11_p9-r0) | |
(31/31) Installing openjdk11 (11.0.11_p9-r0) | |
Executing busybox-1.33.1-r2.trigger | |
Executing java-common-0.4-r0.trigger | |
Executing ca-certificates-20191127-r5.trigger | |
OK: 395 MiB in 64 packages | |
openjdk 11.0.11 2021-04-20 | |
OpenJDK Runtime Environment (build 11.0.11+9-alpine-r0) | |
OpenJDK 64-Bit Server VM (build 11.0.11+9-alpine-r0, mixed mode) | |
Removing intermediate container 0a9b220b6559 | |
---> 1dc2232dadc7 | |
Step 11/71 : ENV MAVEN_VERSION 3.6.3 | |
---> Running in c0c99af49500 | |
Removing intermediate container c0c99af49500 | |
---> 29215b9d5941 | |
Step 12/71 : ENV MAVEN_HOME /usr/lib/mvn | |
---> Running in cf776f2cda0f | |
Removing intermediate container cf776f2cda0f | |
---> 63e05cb5c3e9 | |
Step 13/71 : ENV PATH $MAVEN_HOME/bin:$PATH | |
---> Running in 513cb7175599 | |
Removing intermediate container 513cb7175599 | |
---> b343a3805e72 | |
Step 14/71 : RUN wget http://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz && tar -zxvf apache-maven-$MAVEN_VERSION-bin.tar.gz && rm apache-maven-$MAVEN_VERSION-bin.tar.gz && mv apache-maven-$MAVEN_VERSION /usr/lib/mvn && mvn --version | |
---> Running in 5898228d411b | |
Connecting to archive.apache.org (138.201.131.134:80) | |
saving to 'apache-maven-3.6.3-bin.tar.gz' | |
apache-maven-3.6.3-b 0% | | 89032 0:01:46 ETA | |
apache-maven-3.6.3-b 3% |* | 309k 0:00:58 ETA | |
apache-maven-3.6.3-b 6% |* | 558k 0:00:46 ETA | |
apache-maven-3.6.3-b 8% |** | 770k 0:00:44 ETA | |
apache-maven-3.6.3-b 10% |*** | 975k 0:00:42 ETA | |
apache-maven-3.6.3-b 13% |**** | 1226k 0:00:39 ETA | |
apache-maven-3.6.3-b 15% |**** | 1449k 0:00:37 ETA | |
apache-maven-3.6.3-b 17% |***** | 1656k 0:00:36 ETA | |
apache-maven-3.6.3-b 20% |****** | 1878k 0:00:35 ETA | |
apache-maven-3.6.3-b 22% |******* | 2118k 0:00:33 ETA | |
apache-maven-3.6.3-b 25% |******** | 2335k 0:00:32 ETA | |
apache-maven-3.6.3-b 27% |******** | 2571k 0:00:31 ETA | |
apache-maven-3.6.3-b 29% |********* | 2778k 0:00:30 ETA | |
apache-maven-3.6.3-b 32% |********** | 3004k 0:00:29 ETA | |
apache-maven-3.6.3-b 34% |*********** | 3210k 0:00:28 ETA | |
apache-maven-3.6.3-b 37% |************ | 3488k 0:00:26 ETA | |
apache-maven-3.6.3-b 39% |************ | 3688k 0:00:25 ETA | |
apache-maven-3.6.3-b 42% |************* | 3916k 0:00:24 ETA | |
apache-maven-3.6.3-b 44% |************** | 4173k 0:00:23 ETA | |
apache-maven-3.6.3-b 47% |*************** | 4390k 0:00:22 ETA | |
apache-maven-3.6.3-b 49% |*************** | 4627k 0:00:21 ETA | |
apache-maven-3.6.3-b 52% |**************** | 4855k 0:00:20 ETA | |
apache-maven-3.6.3-b 54% |***************** | 5065k 0:00:19 ETA | |
apache-maven-3.6.3-b 56% |****************** | 5283k 0:00:18 ETA | |
apache-maven-3.6.3-b 59% |******************* | 5546k 0:00:16 ETA | |
apache-maven-3.6.3-b 62% |******************* | 5763k 0:00:15 ETA | |
apache-maven-3.6.3-b 64% |******************** | 5988k 0:00:14 ETA | |
apache-maven-3.6.3-b 67% |********************* | 6230k 0:00:13 ETA | |
apache-maven-3.6.3-b 69% |********************** | 6457k 0:00:12 ETA | |
apache-maven-3.6.3-b 72% |*********************** | 6699k 0:00:11 ETA | |
apache-maven-3.6.3-b 74% |*********************** | 6932k 0:00:10 ETA | |
apache-maven-3.6.3-b 77% |************************ | 7166k 0:00:09 ETA | |
apache-maven-3.6.3-b 79% |************************* | 7381k 0:00:08 ETA | |
apache-maven-3.6.3-b 81% |************************** | 7592k 0:00:07 ETA | |
apache-maven-3.6.3-b 84% |************************** | 7821k 0:00:06 ETA | |
apache-maven-3.6.3-b 86% |*************************** | 8039k 0:00:05 ETA | |
apache-maven-3.6.3-b 89% |**************************** | 8265k 0:00:04 ETA | |
apache-maven-3.6.3-b 91% |***************************** | 8472k 0:00:03 ETA | |
apache-maven-3.6.3-b 93% |***************************** | 8684k 0:00:02 ETA | |
apache-maven-3.6.3-b 95% |****************************** | 8894k 0:00:01 ETA | |
apache-maven-3.6.3-b 98% |******************************* | 9116k 0:00:00 ETA | |
apache-maven-3.6.3-b 100% |********************************| 9283k 0:00:00 ETA | |
'apache-maven-3.6.3-bin.tar.gz' saved | |
apache-maven-3.6.3/README.txt | |
apache-maven-3.6.3/LICENSE | |
apache-maven-3.6.3/NOTICE | |
apache-maven-3.6.3/lib/ | |
apache-maven-3.6.3/lib/cdi-api.license | |
apache-maven-3.6.3/lib/commons-cli.license | |
apache-maven-3.6.3/lib/commons-io.license | |
apache-maven-3.6.3/lib/commons-lang3.license | |
apache-maven-3.6.3/lib/guava.license | |
apache-maven-3.6.3/lib/guice.license | |
apache-maven-3.6.3/lib/jansi.license | |
apache-maven-3.6.3/lib/javax.inject.license | |
apache-maven-3.6.3/lib/jcl-over-slf4j.license | |
apache-maven-3.6.3/lib/jsoup.license | |
apache-maven-3.6.3/lib/jsr250-api.license | |
apache-maven-3.6.3/lib/org.eclipse.sisu.inject.license | |
apache-maven-3.6.3/lib/org.eclipse.sisu.plexus.license | |
apache-maven-3.6.3/lib/plexus-cipher.license | |
apache-maven-3.6.3/lib/plexus-component-annotations.license | |
apache-maven-3.6.3/lib/plexus-interpolation.license | |
apache-maven-3.6.3/lib/plexus-sec-dispatcher.license | |
apache-maven-3.6.3/lib/plexus-utils.license | |
apache-maven-3.6.3/lib/slf4j-api.license | |
apache-maven-3.6.3/boot/ | |
apache-maven-3.6.3/boot/plexus-classworlds.license | |
apache-maven-3.6.3/lib/jansi-native/ | |
apache-maven-3.6.3/lib/jansi-native/freebsd32/ | |
apache-maven-3.6.3/lib/jansi-native/freebsd64/ | |
apache-maven-3.6.3/lib/jansi-native/linux32/ | |
apache-maven-3.6.3/lib/jansi-native/linux64/ | |
apache-maven-3.6.3/lib/jansi-native/osx/ | |
apache-maven-3.6.3/lib/jansi-native/windows32/ | |
apache-maven-3.6.3/lib/jansi-native/windows64/ | |
apache-maven-3.6.3/lib/jansi-native/freebsd32/libjansi.so | |
apache-maven-3.6.3/lib/jansi-native/freebsd64/libjansi.so | |
apache-maven-3.6.3/lib/jansi-native/linux32/libjansi.so | |
apache-maven-3.6.3/lib/jansi-native/linux64/libjansi.so | |
apache-maven-3.6.3/lib/jansi-native/osx/libjansi.jnilib | |
apache-maven-3.6.3/lib/jansi-native/windows32/jansi.dll | |
apache-maven-3.6.3/lib/jansi-native/windows64/jansi.dll | |
apache-maven-3.6.3/bin/m2.conf | |
apache-maven-3.6.3/bin/mvn.cmd | |
apache-maven-3.6.3/bin/mvnDebug.cmd | |
apache-maven-3.6.3/bin/mvn | |
apache-maven-3.6.3/bin/mvnDebug | |
apache-maven-3.6.3/bin/mvnyjp | |
apache-maven-3.6.3/conf/ | |
apache-maven-3.6.3/conf/logging/ | |
apache-maven-3.6.3/conf/logging/simplelogger.properties | |
apache-maven-3.6.3/conf/settings.xml | |
apache-maven-3.6.3/conf/toolchains.xml | |
apache-maven-3.6.3/lib/ext/ | |
apache-maven-3.6.3/lib/jansi-native/ | |
apache-maven-3.6.3/lib/ext/README.txt | |
apache-maven-3.6.3/lib/jansi-native/README.txt | |
apache-maven-3.6.3/boot/plexus-classworlds-2.6.0.jar | |
apache-maven-3.6.3/lib/maven-embedder-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-settings-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-settings-builder-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-plugin-api-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-model-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-model-builder-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-builder-support-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-resolver-api-1.4.1.jar | |
apache-maven-3.6.3/lib/maven-resolver-util-1.4.1.jar | |
apache-maven-3.6.3/lib/maven-shared-utils-3.2.1.jar | |
apache-maven-3.6.3/lib/commons-io-2.5.jar | |
apache-maven-3.6.3/lib/guice-4.2.1-no_aop.jar | |
apache-maven-3.6.3/lib/guava-25.1-android.jar | |
apache-maven-3.6.3/lib/javax.inject-1.jar | |
apache-maven-3.6.3/lib/jsr250-api-1.0.jar | |
apache-maven-3.6.3/lib/plexus-utils-3.2.1.jar | |
apache-maven-3.6.3/lib/plexus-sec-dispatcher-1.4.jar | |
apache-maven-3.6.3/lib/plexus-cipher-1.7.jar | |
apache-maven-3.6.3/lib/slf4j-api-1.7.29.jar | |
apache-maven-3.6.3/lib/commons-lang3-3.8.1.jar | |
apache-maven-3.6.3/lib/maven-core-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-repository-metadata-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-artifact-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-resolver-provider-3.6.3.jar | |
apache-maven-3.6.3/lib/maven-resolver-impl-1.4.1.jar | |
apache-maven-3.6.3/lib/maven-resolver-spi-1.4.1.jar | |
apache-maven-3.6.3/lib/org.eclipse.sisu.inject-0.3.4.jar | |
apache-maven-3.6.3/lib/plexus-component-annotations-2.1.0.jar | |
apache-maven-3.6.3/lib/maven-compat-3.6.3.jar | |
apache-maven-3.6.3/lib/plexus-interpolation-1.25.jar | |
apache-maven-3.6.3/lib/wagon-provider-api-3.3.4.jar | |
apache-maven-3.6.3/lib/org.eclipse.sisu.plexus-0.3.4.jar | |
apache-maven-3.6.3/lib/cdi-api-1.0.jar | |
apache-maven-3.6.3/lib/commons-cli-1.4.jar | |
apache-maven-3.6.3/lib/wagon-http-3.3.4-shaded.jar | |
apache-maven-3.6.3/lib/jsoup-1.12.1.jar | |
apache-maven-3.6.3/lib/jcl-over-slf4j-1.7.29.jar | |
apache-maven-3.6.3/lib/wagon-file-3.3.4.jar | |
apache-maven-3.6.3/lib/maven-resolver-connector-basic-1.4.1.jar | |
apache-maven-3.6.3/lib/maven-resolver-transport-wagon-1.4.1.jar | |
apache-maven-3.6.3/lib/maven-slf4j-provider-3.6.3.jar | |
apache-maven-3.6.3/lib/jansi-1.17.1.jar | |
Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f) | |
Maven home: /usr/lib/mvn | |
Java version: 11.0.11, vendor: Alpine, runtime: /usr/lib/jvm/java-11-openjdk | |
Default locale: en_US, platform encoding: UTF-8 | |
OS name: "linux", version: "5.10.0-kali7-amd64", arch: "amd64", family: "unix" | |
Removing intermediate container 5898228d411b | |
---> cf7120893deb | |
Step 15/71 : RUN ls -la | |
---> Running in a512d9e64dba | |
total 72 | |
drwxr-xr-x 1 root root 4096 Jul 7 12:27 . | |
drwxr-xr-x 1 root root 4096 Jul 7 12:27 .. | |
-rwxr-xr-x 1 root root 0 Jul 7 12:27 .dockerenv | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 bin | |
drwxr-xr-x 5 root root 340 Jul 7 12:27 dev | |
drwxr-xr-x 2 root root 4096 Jun 16 22:24 docker-entrypoint-initdb.d | |
drwxr-xr-x 1 root root 4096 Jul 7 12:27 etc | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 home | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 lib | |
drwxr-xr-x 5 root root 4096 Jun 15 14:34 media | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 mnt | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 opt | |
drwxr-xr-x 2 root root 4096 Jul 7 12:26 postgres | |
dr-xr-xr-x 535 root root 0 Jul 7 12:27 proc | |
drwx------ 2 root root 4096 Jun 15 14:34 root | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 run | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 sbin | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 srv | |
dr-xr-xr-x 13 root root 0 Jul 7 12:27 sys | |
drwxrwxrwt 1 root root 4096 Jul 7 12:27 tmp | |
drwxr-xr-x 1 root root 4096 Jul 7 12:27 usr | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 var | |
Removing intermediate container a512d9e64dba | |
---> 9b63d4d5ea05 | |
Step 16/71 : COPY ./pom.xml ./pom.xml | |
---> 1f26ab96ca24 | |
Step 17/71 : COPY ./api/pom.xml ./api/pom.xml | |
---> b9e36299d180 | |
Step 18/71 : COPY ./application/pom.xml ./application/pom.xml | |
---> 68e18bbecb08 | |
Step 19/71 : COPY ./base/pom.xml ./base/pom.xml | |
---> 50b83c36beb1 | |
Step 20/71 : COPY ./jooq-pq/pom.xml ./jooq-pq/pom.xml | |
---> d6b4bf259e94 | |
Step 21/71 : COPY ./rest-ehr-scape/pom.xml ./rest-ehr-scape/pom.xml | |
---> c90585cb9df9 | |
Step 22/71 : COPY ./rest-openehr/pom.xml ./rest-openehr/pom.xml | |
---> 60a408051768 | |
Step 23/71 : COPY ./service/pom.xml ./service/pom.xml | |
---> 2b94a80288f7 | |
Step 24/71 : COPY ./test-coverage/pom.xml ./test-coverage/pom.xml | |
---> d70bfa4cc544 | |
Step 25/71 : COPY ./api/src ./api/src | |
---> c129e9a24483 | |
Step 26/71 : COPY ./application/src ./application/src | |
---> 545a5ddddf9b | |
Step 27/71 : COPY ./base/src ./base/src | |
---> 3d162fd90213 | |
Step 28/71 : COPY ./jooq-pq/src ./jooq-pq/src | |
---> bac35884bbe2 | |
Step 29/71 : COPY ./rest-ehr-scape/src ./rest-ehr-scape/src | |
---> 83598793576a | |
Step 30/71 : COPY ./rest-openehr/src ./rest-openehr/src | |
---> 825538260eba | |
Step 31/71 : COPY ./service/src ./service/src | |
---> 7c3fa1b56da4 | |
Step 32/71 : RUN mvn compile dependency:go-offline -Dflyway.skip=true -Djooq.codegen.skip=true -Dmaven.main.skip | |
---> Running in df8434b091b5 | |
[INFO] Scanning for projects... | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-parent/2.3.5.RELEASE/spring-boot-starter-parent-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/2.3.5.RELEASE/spring-boot-starter-parent-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/2.3.5.RELEASE/spring-boot-starter-parent-2.3.5.RELEASE.pom (8.6 kB at 66 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-dependencies/2.3.5.RELEASE/spring-boot-dependencies-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.3.5.RELEASE/spring-boot-dependencies-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.3.5.RELEASE/spring-boot-dependencies-2.3.5.RELEASE.pom (121 kB at 2.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/datastax/oss/java-driver-bom/4.6.1/java-driver-bom-4.6.1.pom (3.8 kB at 121 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/dropwizard/metrics/metrics-bom/4.1.14/metrics-bom-4.1.14.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-bom/4.1.14/metrics-bom-4.1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-bom/4.1.14/metrics-bom-4.1.14.pom (5.3 kB at 99 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/dropwizard/metrics/metrics-parent/4.1.14/metrics-parent-4.1.14.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/4.1.14/metrics-parent-4.1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/dropwizard/metrics/metrics-parent/4.1.14/metrics-parent-4.1.14.pom (16 kB at 363 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/groovy/groovy-bom/2.5.13/groovy-bom-2.5.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-bom/2.5.13/groovy-bom-2.5.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-bom/2.5.13/groovy-bom-2.5.13.pom (26 kB at 627 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/jackson-bom/2.11.3/jackson-bom-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.11.3/jackson-bom-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.11.3/jackson-bom-2.11.3.pom (14 kB at 463 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.11/jackson-parent-2.11.pom (7.8 kB at 250 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/oss-parent/38/oss-parent-38.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 678 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.30.1/jersey-bom-2.30.1.pom (19 kB at 631 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom (13 kB at 439 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/jetty/jetty-bom/9.4.33.v20201020/jetty-bom-9.4.33.v20201020.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.33.v20201020/jetty-bom-9.4.33.v20201020.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.33.v20201020/jetty-bom-9.4.33.v20201020.pom (17 kB at 561 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/junit-bom/5.6.3/junit-bom-5.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.6.3/junit-bom-5.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.6.3/junit-bom-5.6.3.pom (4.9 kB at 170 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.3.72/kotlin-bom-1.3.72.pom (8.8 kB at 303 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.8/kotlinx-coroutines-bom-1.3.8.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.8/kotlinx-coroutines-bom-1.3.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.8/kotlinx-coroutines-bom-1.3.8.pom (4.5 kB at 154 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j-bom/2.13.3/log4j-bom-2.13.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.13.3/log4j-bom-2.13.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.13.3/log4j-bom-2.13.3.pom (7.6 kB at 273 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/logging-parent/1/logging-parent-1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/1/logging-parent-1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/1/logging-parent-1.pom (3.2 kB at 117 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/apache/18/apache-18.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 560 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/micrometer/micrometer-bom/1.5.6/micrometer-bom-1.5.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-bom/1.5.6/micrometer-bom-1.5.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-bom/1.5.6/micrometer-bom-1.5.6.pom (6.6 kB at 236 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/netty/netty-bom/4.1.53.Final/netty-bom-4.1.53.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.53.Final/netty-bom-4.1.53.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.53.Final/netty-bom-4.1.53.Final.pom (8.8 kB at 302 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/sonatype/oss/oss-parent/7/oss-parent-7.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 166 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/r2dbc/r2dbc-bom/Arabba-SR8/r2dbc-bom-Arabba-SR8.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/r2dbc/r2dbc-bom/Arabba-SR8/r2dbc-bom-Arabba-SR8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/r2dbc/r2dbc-bom/Arabba-SR8/r2dbc-bom-Arabba-SR8.pom (4.1 kB at 146 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/projectreactor/reactor-bom/Dysprosium-SR13/reactor-bom-Dysprosium-SR13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Dysprosium-SR13/reactor-bom-Dysprosium-SR13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Dysprosium-SR13/reactor-bom-Dysprosium-SR13.pom (4.1 kB at 136 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/rsocket/rsocket-bom/1.0.3/rsocket-bom-1.0.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.0.3/rsocket-bom-1.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.0.3/rsocket-bom-1.0.3.pom (2.8 kB at 99 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/spring-data-releasetrain/Neumann-SR5/spring-data-releasetrain-Neumann-SR5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-releasetrain/Neumann-SR5/spring-data-releasetrain-Neumann-SR5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-releasetrain/Neumann-SR5/spring-data-releasetrain-Neumann-SR5.pom (5.0 kB at 152 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/build/spring-data-build/2.3.5.RELEASE/spring-data-build-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/2.3.5.RELEASE/spring-data-build-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/2.3.5.RELEASE/spring-data-build-2.3.5.RELEASE.pom (7.1 kB at 244 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-framework-bom/5.2.10.RELEASE/spring-framework-bom-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.2.10.RELEASE/spring-framework-bom-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.2.10.RELEASE/spring-framework-bom-5.2.10.RELEASE.pom (5.3 kB at 183 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/integration/spring-integration-bom/5.3.3.RELEASE/spring-integration-bom-5.3.3.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/5.3.3.RELEASE/spring-integration-bom-5.3.3.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/5.3.3.RELEASE/spring-integration-bom-5.3.3.RELEASE.pom (9.2 kB at 317 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-bom/5.3.5.RELEASE/spring-security-bom-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.3.5.RELEASE/spring-security-bom-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.3.5.RELEASE/spring-security-bom-5.3.5.RELEASE.pom (5.4 kB at 181 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/session/spring-session-bom/Dragonfruit-SR1/spring-session-bom-Dragonfruit-SR1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/Dragonfruit-SR1/spring-session-bom-Dragonfruit-SR1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/Dragonfruit-SR1/spring-session-bom-Dragonfruit-SR1.pom (2.8 kB at 99 kB/s) | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Build Order: | |
[INFO] | |
[INFO] org.ehrbase.openehr:server [pom] | |
[INFO] api [jar] | |
[INFO] base [jar] | |
[INFO] jooq-pq [jar] | |
[INFO] rest-openehr [jar] | |
[INFO] service [jar] | |
[INFO] rest-ehr-scape [jar] | |
[INFO] application [jar] | |
[INFO] test-coverage [jar] | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.6/jacoco-maven-plugin-0.8.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.6/jacoco-maven-plugin-0.8.6.pom (4.4 kB at 156 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.6/org.jacoco.build-0.8.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.6/org.jacoco.build-0.8.6.pom (42 kB at 1.4 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.6/jacoco-maven-plugin-0.8.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.6/jacoco-maven-plugin-0.8.6.jar (53 kB at 1.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0-M5/maven-surefire-plugin-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0-M5/maven-surefire-plugin-3.0.0-M5.pom (8.0 kB at 268 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0-M5/surefire-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0-M5/surefire-3.0.0-M5.pom (27 kB at 856 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 635 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0-M5/maven-surefire-plugin-3.0.0-M5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0-M5/maven-surefire-plugin-3.0.0-M5.jar (43 kB at 1.4 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/3.0.0-M5/maven-failsafe-plugin-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/3.0.0-M5/maven-failsafe-plugin-3.0.0-M5.pom (14 kB at 480 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/3.0.0-M5/maven-failsafe-plugin-3.0.0-M5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/3.0.0-M5/maven-failsafe-plugin-3.0.0-M5.jar (53 kB at 1.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/2.7/versions-maven-plugin-2.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/2.7/versions-maven-plugin-2.7.pom (17 kB at 567 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/40/mojo-parent-40.pom (34 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/2.7/versions-maven-plugin-2.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/versions-maven-plugin/2.7/versions-maven-plugin-2.7.jar (310 kB at 6.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.pom (12 kB at 445 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom (11 kB at 382 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 1.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 611 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/maven-compiler-plugin-3.8.1.jar (62 kB at 2.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.pom (11 kB at 409 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom (11 kB at 386 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 499 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/2.8/maven-dependency-plugin-2.8.jar (153 kB at 4.1 MB/s) | |
[INFO] | |
[INFO] ---------------------< org.ehrbase.openehr:server >--------------------- | |
[INFO] Building org.ehrbase.openehr:server 0.16.5 [1/9] | |
[INFO] --------------------------------[ pom ]--------------------------------- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.pom (6.9 kB at 223 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.jar (32 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.1.1/maven-javadoc-plugin-3.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.1.1/maven-javadoc-plugin-3.1.1.pom (18 kB at 630 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.1.1/maven-javadoc-plugin-3.1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-javadoc-plugin/3.1.1/maven-javadoc-plugin-3.1.1.jar (481 kB at 8.7 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom (14 kB at 517 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/java/jvnet-parent/3/jvnet-parent-3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 171 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-test/2.3.5.RELEASE/spring-boot-starter-test-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.3.5.RELEASE/spring-boot-starter-test-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.3.5.RELEASE/spring-boot-starter-test-2.3.5.RELEASE.pom (5.1 kB at 183 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter/2.3.5.RELEASE/spring-boot-starter-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.3.5.RELEASE/spring-boot-starter-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.3.5.RELEASE/spring-boot-starter-2.3.5.RELEASE.pom (3.1 kB at 107 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot/2.3.5.RELEASE/spring-boot-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.3.5.RELEASE/spring-boot-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.3.5.RELEASE/spring-boot-2.3.5.RELEASE.pom (2.2 kB at 72 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-core/5.2.10.RELEASE/spring-core-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.10.RELEASE/spring-core-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.10.RELEASE/spring-core-5.2.10.RELEASE.pom (1.7 kB at 34 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-jcl/5.2.10.RELEASE/spring-jcl-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.10.RELEASE/spring-jcl-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.10.RELEASE/spring-jcl-5.2.10.RELEASE.pom (1.5 kB at 49 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-context/5.2.10.RELEASE/spring-context-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.10.RELEASE/spring-context-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.10.RELEASE/spring-context-5.2.10.RELEASE.pom (2.3 kB at 84 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-aop/5.2.10.RELEASE/spring-aop-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.10.RELEASE/spring-aop-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.10.RELEASE/spring-aop-5.2.10.RELEASE.pom (1.9 kB at 67 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-beans/5.2.10.RELEASE/spring-beans-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.10.RELEASE/spring-beans-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.10.RELEASE/spring-beans-5.2.10.RELEASE.pom (1.7 kB at 60 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-expression/5.2.10.RELEASE/spring-expression-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.10.RELEASE/spring-expression-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.10.RELEASE/spring-expression-5.2.10.RELEASE.pom (1.7 kB at 66 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-autoconfigure/2.3.5.RELEASE/spring-boot-autoconfigure-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.3.5.RELEASE/spring-boot-autoconfigure-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.3.5.RELEASE/spring-boot-autoconfigure-2.3.5.RELEASE.pom (2.1 kB at 78 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-logging/2.3.5.RELEASE/spring-boot-starter-logging-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.3.5.RELEASE/spring-boot-starter-logging-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.3.5.RELEASE/spring-boot-starter-logging-2.3.5.RELEASE.pom (2.5 kB at 92 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom (13 kB at 267 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom (18 kB at 556 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom (4.2 kB at 155 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.pom (3.8 kB at 148 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.30/slf4j-parent-1.7.30.pom (14 kB at 493 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.pom (7.2 kB at 266 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j/2.13.3/log4j-2.13.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.13.3/log4j-2.13.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.13.3/log4j-2.13.3.pom (64 kB at 2.1 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.pom (13 kB at 487 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.pom (990 B at 38 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.pom (16 kB at 577 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/annotation/ca-parent/1.3.5/ca-parent-1.3.5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/annotation/ca-parent/1.3.5/ca-parent-1.3.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/annotation/ca-parent/1.3.5/ca-parent-1.3.5.pom (2.8 kB at 108 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/yaml/snakeyaml/1.26/snakeyaml-1.26.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26.pom (38 kB at 1.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-test/2.3.5.RELEASE/spring-boot-test-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.3.5.RELEASE/spring-boot-test-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.3.5.RELEASE/spring-boot-test-2.3.5.RELEASE.pom (2.1 kB at 45 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-test-autoconfigure/2.3.5.RELEASE/spring-boot-test-autoconfigure-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.3.5.RELEASE/spring-boot-test-autoconfigure-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.3.5.RELEASE/spring-boot-test-autoconfigure-2.3.5.RELEASE.pom (2.5 kB at 90 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.pom (2.6 kB at 94 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/minidev/json-smart/2.3/json-smart-2.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom (9.0 kB at 322 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom (8.5 kB at 292 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom (12 kB at 429 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom (1.9 kB at 72 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom (5.5 kB at 211 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/ow2/ow2/1.3/ow2-1.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom (9.5 kB at 340 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.pom (13 kB at 497 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.3/jakarta.xml.bind-api-parent-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.3/jakarta.xml.bind-api-parent-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.3/jakarta.xml.bind-api-parent-2.3.3.pom (9.0 kB at 333 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom (13 kB at 476 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.pom (5.3 kB at 111 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/activation/all/1.2.2/all-1.2.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.2/all-1.2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.2/all-1.2.2.pom (15 kB at 460 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.pom (20 kB at 707 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/assertj/assertj-parent-pom/2.2.7/assertj-parent-pom-2.2.7.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.7/assertj-parent-pom-2.2.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.7/assertj-parent-pom-2.2.7.pom (23 kB at 788 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.6.2/junit-bom-5.6.2.pom (4.9 kB at 190 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.pom (1.1 kB at 45 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.pom (3.2 kB at 119 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.pom (3.2 kB at 118 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.pom (1.2 kB at 45 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (1.7 kB at 65 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.pom (2.8 kB at 101 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.pom (3.0 kB at 112 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.pom (3.2 kB at 119 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.pom (3.2 kB at 115 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.pom (3.3 kB at 123 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/junit/junit/4.13.1/junit-4.13.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.pom (25 kB at 611 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.pom (23 kB at 850 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/bytebuddy/byte-buddy/1.10.17/byte-buddy-1.10.17.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.17/byte-buddy-1.10.17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.17/byte-buddy-1.10.17.pom (11 kB at 409 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/bytebuddy/byte-buddy-parent/1.10.17/byte-buddy-parent-1.10.17.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.10.17/byte-buddy-parent-1.10.17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.10.17/byte-buddy-parent-1.10.17.pom (40 kB at 1.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/bytebuddy/byte-buddy-agent/1.10.17/byte-buddy-agent-1.10.17.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.17/byte-buddy-agent-1.10.17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.17/byte-buddy-agent-1.10.17.pom (9.6 kB at 354 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/objenesis/objenesis/2.6/objenesis-2.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.pom (2.8 kB at 68 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom (17 kB at 612 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.pom (23 kB at 813 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.pom (5.2 kB at 103 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom (2.8 kB at 107 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-test/5.2.10.RELEASE/spring-test-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.10.RELEASE/spring-test-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.10.RELEASE/spring-test-5.2.10.RELEASE.pom (1.7 kB at 61 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.pom (2.7 kB at 101 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/xmlunit/xmlunit-parent/2.7.0/xmlunit-parent-2.7.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.7.0/xmlunit-parent-2.7.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.7.0/xmlunit-parent-2.7.0.pom (20 kB at 724 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter/2.3.5.RELEASE/spring-boot-starter-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-test/2.3.5.RELEASE/spring-boot-starter-test-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-context/5.2.10.RELEASE/spring-context-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot/2.3.5.RELEASE/spring-boot-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-aop/5.2.10.RELEASE/spring-aop-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-beans/5.2.10.RELEASE/spring-beans-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-expression/5.2.10.RELEASE/spring-expression-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-autoconfigure/2.3.5.RELEASE/spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-logging/2.3.5.RELEASE/spring-boot-starter-logging-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar | |
Downloading from jitpack.io: https://jitpack.io/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar | |
Downloading from jitpack.io: https://jitpack.io/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar | |
Downloading from jitpack.io: https://jitpack.io/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-test/2.3.5.RELEASE/spring-boot-test-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-test-autoconfigure/2.3.5.RELEASE/spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar | |
Downloading from jitpack.io: https://jitpack.io/net/minidev/json-smart/2.3/json-smart-2.3.jar | |
Downloading from jitpack.io: https://jitpack.io/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar | |
Downloading from jitpack.io: https://jitpack.io/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar | |
Downloading from jitpack.io: https://jitpack.io/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.jar | |
Downloading from jitpack.io: https://jitpack.io/junit/junit/4.13.1/junit-4.13.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/net/bytebuddy/byte-buddy/1.10.17/byte-buddy-1.10.17.jar | |
Downloading from jitpack.io: https://jitpack.io/net/bytebuddy/byte-buddy-agent/1.10.17/byte-buddy-agent-1.10.17.jar | |
Downloading from jitpack.io: https://jitpack.io/org/objenesis/objenesis/2.6/objenesis-2.6.jar | |
Downloading from jitpack.io: https://jitpack.io/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar | |
Downloading from jitpack.io: https://jitpack.io/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-core/5.2.10.RELEASE/spring-core-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-jcl/5.2.10.RELEASE/spring-jcl-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-test/5.2.10.RELEASE/spring-test-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.3.5.RELEASE/spring-boot-starter-test-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.3.5.RELEASE/spring-boot-starter-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.3.5.RELEASE/spring-boot-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.10.RELEASE/spring-context-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar (27 kB at 483 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.10.RELEASE/spring-aop-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.3.5.RELEASE/spring-boot-starter-2.3.5.RELEASE.jar (4.8 kB at 77 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.10.RELEASE/spring-beans-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.3.5.RELEASE/spring-boot-starter-test-2.3.5.RELEASE.jar (4.8 kB at 76 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.10.RELEASE/spring-expression-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.10.RELEASE/spring-aop-5.2.10.RELEASE.jar (373 kB at 3.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.3.5.RELEASE/spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.10.RELEASE/spring-expression-5.2.10.RELEASE.jar (282 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.3.5.RELEASE/spring-boot-starter-logging-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.3.5.RELEASE/spring-boot-autoconfigure-2.3.5.RELEASE.jar (1.5 MB at 5.6 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.3.5.RELEASE/spring-boot-starter-logging-2.3.5.RELEASE.jar (4.8 kB at 18 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar (290 kB at 904 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.jar (17 kB at 48 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.10.RELEASE/spring-beans-5.2.10.RELEASE.jar (688 kB at 1.9 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar (472 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar (4.6 kB at 12 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.3.5.RELEASE/spring-boot-2.3.5.RELEASE.jar (1.1 MB at 2.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.3.5.RELEASE/spring-boot-test-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.10.RELEASE/spring-context-5.2.10.RELEASE.jar (1.2 MB at 3.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.3.5.RELEASE/spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar (25 kB at 59 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar (309 kB at 694 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.jar (292 kB at 644 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.3.5.RELEASE/spring-boot-test-2.3.5.RELEASE.jar (216 kB at 462 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.3.5.RELEASE/spring-boot-test-autoconfigure-2.3.5.RELEASE.jar (175 kB at 373 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar (120 kB at 251 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar (223 kB at 465 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar (30 kB at 62 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar (53 kB at 106 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar (41 kB at 83 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar (116 kB at 224 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar (47 kB at 90 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.jar (6.4 kB at 12 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar (123 kB at 226 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (7.7 kB at 14 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.jar (154 kB at 276 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.jar (97 kB at 166 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.jar (209 kB at 351 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.jar (64 kB at 105 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar (2.4 kB at 3.8 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.jar (174 kB at 262 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.17/byte-buddy-1.10.17.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.jar (562 kB at 820 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.17/byte-buddy-agent-1.10.17.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.jar (383 kB at 516 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar (56 kB at 66 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.17/byte-buddy-agent-1.10.17.jar (259 kB at 305 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.jar (592 kB at 668 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.jar (4.5 kB at 4.9 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.10.RELEASE/spring-core-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar (30 kB at 33 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.10.RELEASE/spring-jcl-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar (18 kB at 19 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.10.RELEASE/spring-test-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.10.RELEASE/spring-jcl-5.2.10.RELEASE.jar (24 kB at 24 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.17/byte-buddy-1.10.17.jar (3.5 MB at 3.2 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.jar (168 kB at 148 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.10.RELEASE/spring-test-5.2.10.RELEASE.jar (685 kB at 568 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.jar (4.7 MB at 3.9 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.10.RELEASE/spring-core-5.2.10.RELEASE.jar (1.4 MB at 1.2 MB/s) | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ server --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 85 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 811 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 889 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 457 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 150 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 123 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 621 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 74 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 199 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 120 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 97 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 46 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 278 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 384 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 31 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 163 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 643 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 148 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 128 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 210 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 410 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 246 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 72 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 82 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 35 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 206 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 641 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 31 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 163 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 118 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 261 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 323 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 206 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 332 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 79 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 74 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 86 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 95 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 64 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 297 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 76 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 142 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 67 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 147 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 705 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 260 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 484 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom (3.9 kB at 144 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom (8.4 kB at 324 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/9/maven-parent-9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/9/maven-parent-9.pom (33 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 173 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 56 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 274 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 423 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 137 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom (4.1 kB at 156 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom (2.7 kB at 103 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/7/maven-parent-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/7/maven-parent-7.pom (21 kB at 787 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom (765 B at 27 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom (13 kB at 488 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom (767 B at 30 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 221 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom (1.4 kB at 54 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom (1.3 kB at 52 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 48 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 19 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13/junit-4.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13/junit-4.13.pom (25 kB at 895 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 31 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 76 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 254 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 120 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom (588 B at 23 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom (6.4 kB at 246 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom (2.3 kB at 87 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom (5.3 kB at 161 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom (9.8 kB at 363 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 91 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 346 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 862 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 555 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 51 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 357 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom (4.5 kB at 174 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom (2.8 kB at 92 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom (24 kB at 867 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom (2.2 kB at 90 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom (3.3 kB at 128 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom (1.4 kB at 51 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 141 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom (2.1 kB at 81 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom (2.7 kB at 104 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom (2.3 kB at 89 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom (1.6 kB at 62 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom (2.0 kB at 75 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom (1.5 kB at 58 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom (1.6 kB at 63 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom (18 kB at 648 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom (1.6 kB at 63 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 134 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 73 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 87 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 124 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 284 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom (3.7 kB at 149 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom (5.6 kB at 217 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 447 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom (2.2 kB at 50 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom (738 B at 28 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1.pom (3.4 kB at 131 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 518 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 812 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom (7.8 kB at 299 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom (5.3 kB at 202 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom (3.8 kB at 147 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom (6.1 kB at 161 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom (15 kB at 588 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom (3.0 kB at 114 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom (1.6 kB at 64 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom (2.4 kB at 97 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom (5.5 kB at 196 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 42 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 116 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 76 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom (2.0 kB at 75 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom (3.0 kB at 115 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom (1.9 kB at 73 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom (1.0 kB at 41 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 278 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom (2.4 kB at 91 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom (7.7 kB at 295 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.pom (7.8 kB at 288 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 477 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 2.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 570 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 382 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 5.4 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.pom (9.1 kB at 349 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom (357 B at 14 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 33 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 37 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom (2.3 kB at 89 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 6.5 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 86 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/2.0.2/xml-apis-2.0.2.pom (346 B at 14 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 278 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6.pom (3.5 kB at 100 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.6/org.jacoco.core-0.8.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.6/org.jacoco.core-0.8.6.pom (2.1 kB at 80 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.pom (2.9 kB at 105 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 432 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0.1/asm-commons-8.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0.1/asm-commons-8.0.1.pom (3.7 kB at 142 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0.1/asm-tree-8.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0.1/asm-tree-8.0.1.pom (3.1 kB at 116 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0.1/asm-analysis-8.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0.1/asm-analysis-8.0.1.pom (3.2 kB at 122 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.6/org.jacoco.report-0.8.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.6/org.jacoco.report-0.8.6.pom (1.9 kB at 72 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar (49 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar (52 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar (153 kB at 3.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar (165 kB at 3.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar (202 kB at 3.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar (47 kB at 491 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar (38 kB at 386 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar (30 kB at 292 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar (472 kB at 4.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar (51 kB at 391 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar (527 kB at 3.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar (148 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar (14 kB at 94 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar (106 kB at 738 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar (74 kB at 455 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar (61 kB at 351 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar (108 kB at 613 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar (46 kB at 262 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 24 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar (29 kB at 149 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 66 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar (39 kB at 191 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar (38 kB at 176 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13/junit-4.13.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar (49 kB at 219 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.jar (245 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar (195 kB at 772 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar (43 kB at 168 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 175 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 144 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13/junit-4.13.jar (382 kB at 1.4 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 39 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar (10 kB at 36 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar (17 kB at 58 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.jar (123 kB at 412 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.jar (37 kB at 123 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.jar (30 kB at 98 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.jar (11 kB at 36 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar (158 kB at 498 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 708 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar (30 kB at 81 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar (50 kB at 133 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar (305 kB at 782 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar (15 kB at 38 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar (52 kB at 130 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar (37 kB at 91 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar (11 kB at 24 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar (7.7 kB at 18 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar (1.2 MB at 2.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.jar (392 kB at 815 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.2.0/commons-validator-1.2.0.jar (91 kB at 186 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar (189 kB at 380 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.jar (168 kB at 330 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.6/org.jacoco.core-0.8.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar (38 kB at 74 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 125 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0.1/asm-commons-8.0.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar (109 kB at 204 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0.1/asm-analysis-8.0.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0.1/asm-8.0.1.jar (122 kB at 218 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0.1/asm-tree-8.0.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0.1/asm-commons-8.0.1.jar (72 kB at 127 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.6/org.jacoco.report-0.8.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar (292 kB at 514 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.6/org.jacoco.core-0.8.6.jar (199 kB at 349 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0.1/asm-analysis-8.0.1.jar (33 kB at 59 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0.1/asm-tree-8.0.1.jar (53 kB at 90 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.6/org.jacoco.report-0.8.6.jar (129 kB at 210 kB/s) | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/target/jacoco.exec | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ server >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ server --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.pom (1.6 kB at 65 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.9/maven-2.0.9.pom (19 kB at 727 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/8/maven-parent-8.pom (24 kB at 589 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.1/plexus-utils-1.5.1.pom (2.3 kB at 92 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.pom (1.5 kB at 60 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.pom (2.7 kB at 108 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.pom (2.1 kB at 82 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.pom (3.1 kB at 121 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 38 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.pom (2.0 kB at 79 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.pom (2.7 kB at 104 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.pom (1.9 kB at 70 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.pom (2.0 kB at 73 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.pom (7.8 kB at 299 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.pom (2.0 kB at 73 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.9/maven-reporting-api-2.0.9.pom (1.8 kB at 69 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.9/maven-reporting-2.0.9.pom (1.5 kB at 55 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-10/doxia-sink-api-1.0-alpha-10.pom (1.3 kB at 54 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-10/doxia-1.0-alpha-10.pom (9.2 kB at 339 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/6/maven-parent-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/6/maven-parent-6.pom (20 kB at 557 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.pom (1.7 kB at 70 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.pom (2.1 kB at 78 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.pom (2.1 kB at 83 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 273 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.pom (1.3 kB at 49 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 133 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.pom (4.2 kB at 162 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (2.6 kB at 101 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2.0 kB at 80 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3.0 kB at 122 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2.0 kB at 76 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (2.6 kB at 105 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (1.9 kB at 74 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 58 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (1.9 kB at 75 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom (2.4 kB at 92 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom (8.1 kB at 310 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom (4.4 kB at 164 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom (9.6 kB at 160 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom (32 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom (4.1 kB at 152 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 234 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom (3.2 kB at 117 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 298 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom (2.3 kB at 87 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom (2.4 kB at 92 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom (2.7 kB at 87 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom (2.2 kB at 83 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom (1.6 kB at 62 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.pom (5.9 kB at 226 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/11/maven-shared-components-11.pom (8.3 kB at 261 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.pom (13 kB at 506 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/7/commons-parent-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/7/commons-parent-7.pom (17 kB at 673 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (1.8 kB at 67 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (1.4 kB at 50 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B at 16 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (3.9 kB at 150 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom (171 B at 5.5 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 128 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.pom (3.4 kB at 130 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom (3.1 kB at 113 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom (20 kB at 737 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom (3.1 kB at 116 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom (2.2 kB at 85 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom (3.1 kB at 122 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 568 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 126 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.pom (3.1 kB at 116 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.pom (5.2 kB at 156 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 193 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 9.9 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 173 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.pom (1.8 kB at 58 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.5/maven-2.0.5.pom (5.7 kB at 219 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.pom (1.7 kB at 64 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.pom (2.7 kB at 59 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.pom (1.7 kB at 35 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.pom (1.8 kB at 66 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.pom (1.5 kB at 48 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.pom (727 B at 28 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom (6.8 kB at 261 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom (2.8 kB at 107 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.0/maven-2.2.0.pom (22 kB at 832 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.0/maven-settings-2.2.0.pom (2.2 kB at 84 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.0/maven-model-2.2.0.pom (3.2 kB at 125 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 228 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom (889 B at 34 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 225 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom (2.2 kB at 78 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom (3.1 kB at 119 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom (1.9 kB at 72 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.0/maven-artifact-2.2.0.pom (1.6 kB at 61 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom (880 B at 34 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom (1.9 kB at 69 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom (2.0 kB at 78 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom (28 kB at 995 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom (3.8 kB at 150 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 322 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 879 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 548 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom (1.6 kB at 56 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom (12 kB at 465 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom (3.1 kB at 121 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom (2.7 kB at 108 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom (2.1 kB at 79 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom (2.0 kB at 78 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom (2.7 kB at 108 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom (1.9 kB at 73 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom (2.0 kB at 59 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom (1.5 kB at 57 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom (2.8 kB at 106 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom (4.0 kB at 155 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 573 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom (2.8 kB at 108 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom (19 kB at 713 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 4.4 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom (5.3 kB at 198 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 95 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 62 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom (747 B at 30 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom (4.0 kB at 155 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 321 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 322 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.pom (5.1 kB at 195 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 359 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 838 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 673 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 891 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 481 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.9/maven-profile-2.0.9.jar (35 kB at 930 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.9/maven-settings-2.0.9.jar (49 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.9/maven-artifact-2.0.9.jar (89 kB at 2.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.9/maven-project-2.0.9.jar (122 kB at 2.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.9/maven-plugin-api-2.0.9.jar (13 kB at 300 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.9/maven-plugin-registry-2.0.9.jar (29 kB at 440 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/maven-plugin-parameter-documenter-2.0.9.jar (21 kB at 286 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.9/maven-model-2.0.9.jar (87 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.9/maven-error-diagnostics-2.0.9.jar (14 kB at 184 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0.9/maven-core-2.0.9.jar (160 kB at 1.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (30 kB at 324 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 130 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0.9/maven-monitor-2.0.9.jar (10 kB at 100 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0.9/maven-plugin-descriptor-2.0.9.jar (37 kB at 353 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.9/maven-repository-metadata-2.0.9.jar (25 kB at 201 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.0.5/maven-reporting-impl-2.0.5.jar (21 kB at 156 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.9/maven-artifact-manager-2.0.9.jar (58 kB at 438 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar (55 kB at 413 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-doxia-tools/1.0.2/maven-doxia-tools-1.0.2.jar (41 kB at 304 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/1.4/commons-io-1.4.jar (109 kB at 704 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar (47 kB at 284 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar (49 kB at 297 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar (47 kB at 277 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar (19 kB at 108 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar (28 kB at 152 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar (22 kB at 109 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/2.3/plexus-archiver-2.3.jar (186 kB at 867 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 895 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 533 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.9/plexus-utils-3.0.9.jar (232 kB at 991 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar (58 kB at 246 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.4/maven-dependency-analyzer-1.4.jar (27 kB at 113 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/asm/asm/3.3.1/asm-3.3.1.jar (44 kB at 178 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar (60 kB at 230 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar (32 kB at 119 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/2.0.11/maven-invoker-2.0.11.jar (29 kB at 106 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar (134 kB at 488 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar (284 kB at 977 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 127 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar (575 kB at 1.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar (30 kB at 586 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.jar (34 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.jar (124 kB at 3.9 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar (33 kB at 1.3 MB/s) | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.jar (26 kB at 823 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.jar (196 kB at 4.8 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 6.3 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom (5.2 kB at 162 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom (10 kB at 400 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-parent/31/maven-parent-31.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/31/maven-parent-31.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/31/maven-parent-31.pom (43 kB at 1.5 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/apache/19/apache-19.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 596 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar (167 kB at 4.6 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar (80 kB at 2.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar (68 kB at 1.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar (178 kB at 4.6 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar (88 kB at 2.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar (12 kB at 458 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar (49 kB at 1.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar (156 kB at 4.5 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.0.0/maven-reporting-impl-3.0.0.jar (18 kB at 681 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar (61 kB at 2.1 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/wagon/wagon-provider-api/2.12/wagon-provider-api-2.12.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.12/wagon-provider-api-2.12.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.12/wagon-provider-api-2.12.jar (55 kB at 1.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/wagon/wagon-file/2.12/wagon-file-2.12.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-file/2.12/wagon-file-2.12.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-file/2.12/wagon-file-2.12.jar (12 kB at 446 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.jar (167 kB at 4.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.jar (11 kB at 407 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-site-renderer/1.7/doxia-site-renderer-1.7.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7/doxia-site-renderer-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7/doxia-site-renderer-1.7.jar (62 kB at 1.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar (247 kB at 5.6 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-container-default/1.7.1/plexus-container-default-1.7.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.7.1/plexus-container-default-1.7.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.7.1/plexus-container-default-1.7.1.jar (231 kB at 5.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.jar (12 kB at 421 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 426 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/woodstox/woodstox-core-asl/4.2.0/woodstox-core-asl-4.2.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/woodstox-core-asl/4.2.0/woodstox-core-asl-4.2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/woodstox-core-asl/4.2.0/woodstox-core-asl-4.2.0.jar (482 kB at 8.9 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.3/maven-site-plugin-3.3.pom (21 kB at 771 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/reporting/maven-reporting-exec/1.1/maven-reporting-exec-1.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.1/maven-reporting-exec-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.1/maven-reporting-exec-1.1.jar (26 kB at 960 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar (20 kB at 722 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar (11 kB at 431 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar (11 kB at 435 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.jar (165 kB at 4.7 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar (15 kB at 592 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-module-apt/1.4/doxia-module-apt-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.4/doxia-module-apt-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.4/doxia-module-apt-1.4.jar (52 kB at 1.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-module-xdoc/1.4/doxia-module-xdoc-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.4/doxia-module-xdoc-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.4/doxia-module-xdoc-1.4.jar (37 kB at 1.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.4/doxia-module-fml-1.4.jar (38 kB at 1.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-module-markdown/1.4/doxia-module-markdown-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.4/doxia-module-markdown-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.4/doxia-module-markdown-1.4.jar (12 kB at 432 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar (105 kB at 3.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.4/doxia-decoration-model-1.4.jar (61 kB at 2.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.4/doxia-site-renderer-1.4.jar (53 kB at 1.8 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-integration-tools/1.5/doxia-integration-tools-1.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.5/doxia-integration-tools-1.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.5/doxia-integration-tools-1.5.jar (45 kB at 1.6 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0/wagon-provider-api-1.0.jar (53 kB at 1.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar (177 kB at 4.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.8/plexus-velocity-1.1.8.jar (7.9 kB at 292 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.10/plexus-utils-1.5.10.jar (281 kB at 6.8 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty/6.1.25/jetty-6.1.25.jar (539 kB at 9.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mortbay/jetty/jetty-util/6.1.25/jetty-util-6.1.25.jar (177 kB at 4.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-lang/commons-lang/2.5/commons-lang-2.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.5/commons-lang-2.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.5/commons-lang-2.5.jar (279 kB at 6.8 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar (24 kB at 878 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/maven-invoker/3.0.0/maven-invoker-3.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/3.0.0/maven-invoker-3.0.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/3.0.0/maven-invoker-3.0.0.jar (33 kB at 1.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/maven-common-artifact-filters/3.0.0/maven-common-artifact-filters-3.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.0/maven-common-artifact-filters-3.0.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.0/maven-common-artifact-filters-3.0.0.jar (57 kB at 1.7 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/maven-artifact-transfer/0.10.1/maven-artifact-transfer-0.10.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.1/maven-artifact-transfer-0.10.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.1/maven-artifact-transfer-0.10.1.jar (128 kB at 3.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.jar (64 kB at 2.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar (53 kB at 1.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar (480 kB at 8.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-io/commons-io/2.5/commons-io-2.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 5.5 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.jar (772 kB at 11 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/thoughtworks/qdox/qdox/2.0-M10/qdox-2.0-M10.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M10/qdox-2.0-M10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M10/qdox-2.0-M10.jar (317 kB at 7.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-java/1.0.3/plexus-java-1.0.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.3/plexus-java-1.0.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.3/plexus-java-1.0.3.jar (51 kB at 1.8 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar (191 kB at 5.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar (75 kB at 2.6 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.jar (311 kB at 7.2 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 501 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar (39 kB at 1.1 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.jar (27 kB at 1.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.jar (4.7 kB at 181 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.jar (21 kB at 788 kB/s) | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom (6.4 kB at 247 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/25/maven-plugins-25.pom (9.6 kB at 367 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-parent/24/maven-parent-24.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/24/maven-parent-24.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/24/maven-parent-24.pom (37 kB at 1.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/apache/14/apache-14.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/14/apache-14.pom (15 kB at 565 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-codec/commons-codec/1.6/commons-codec-1.6.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.6/commons-codec-1.6.jar (233 kB at 6.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.4/maven-shared-utils-0.4.jar (155 kB at 4.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.jar (239 kB at 6.1 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/2.8.2/maven-deploy-plugin-2.8.2.pom (7.1 kB at 275 kB/s) | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ server <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ server --- | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] ----------------------< org.ehrbase.openehr:api >----------------------- | |
[INFO] Building api 0.16.5 [2/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom (7.2 kB at 188 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar (32 kB at 928 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/serialisation/39cb1fd/serialisation-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/serialisation/39cb1fd/serialisation-39cb1fd.pom (3.1 kB at 20 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/root/39cb1fd/root-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/root/39cb1fd/root-39cb1fd.pom (15 kB at 166 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/web-template/39cb1fd/web-template-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/web-template/39cb1fd/web-template-39cb1fd.pom (2.1 kB at 23 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/opt-1.4/39cb1fd/opt-1.4-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/opt-1.4/39cb1fd/opt-1.4-39cb1fd.pom (1.3 kB at 14 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.pom (3.1 kB at 118 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/util/39cb1fd/util-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/util/39cb1fd/util-39cb1fd.pom (709 B at 6.3 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/github/classgraph/classgraph/4.8.98/classgraph-4.8.98.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.98/classgraph-4.8.98.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.98/classgraph-4.8.98.pom (28 kB at 236 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/terminology/39cb1fd/terminology-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/terminology/39cb1fd/terminology-39cb1fd.pom (994 B at 9.9 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (3.3 kB at 46 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/aom/5a4a9442e5e2516aed5f25636ac236682aace7b9/aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/aom/5a4a9442e5e2516aed5f25636ac236682aace7b9/aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (6.1 kB at 76 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/esotericsoftware/kryo-shaded/4.0.2/kryo-shaded-4.0.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo-shaded/4.0.2/kryo-shaded-4.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo-shaded/4.0.2/kryo-shaded-4.0.2.pom (3.5 kB at 134 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/esotericsoftware/kryo-parent/4.0.2/kryo-parent-4.0.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo-parent/4.0.2/kryo-parent-4.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo-parent/4.0.2/kryo-parent-4.0.2.pom (7.1 kB at 228 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.pom (3.3 kB at 119 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.5.1/objenesis-2.5.1.pom (2.8 kB at 107 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/objenesis/objenesis-parent/2.5.1/objenesis-parent-2.5.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5.1/objenesis-parent-2.5.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.5.1/objenesis-parent-2.5.1.pom (17 kB at 590 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/core/jackson-annotations/2.11.3/jackson-annotations-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.11.3/jackson-annotations-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.11.3/jackson-annotations-2.11.3.pom (3.8 kB at 147 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/core/jackson-databind/2.11.3/jackson-databind-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.11.3/jackson-databind-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.11.3/jackson-databind-2.11.3.pom (7.4 kB at 238 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/jackson-base/2.11.3/jackson-base-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.11.3/jackson-base-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.11.3/jackson-base-2.11.3.pom (7.5 kB at 277 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.pom (4.9 kB at 187 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.pom (4.3 kB at 164 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.10/jackson-modules-java8-2.9.10.pom (2.8 kB at 106 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.10/jackson-base-2.9.10.pom (5.5 kB at 212 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.10/jackson-bom-2.9.10.pom (13 kB at 466 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom (7.9 kB at 304 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/oss-parent/34/oss-parent-34.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom (23 kB at 841 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.pom (2.1 kB at 21 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/sonatype/oss/oss-parent/9/oss-parent-9.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 243 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava/30.1-jre/guava-30.1-jre.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/30.1-jre/guava-30.1-jre.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/30.1-jre/guava-30.1-jre.pom (12 kB at 436 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava-parent/30.1-jre/guava-parent-30.1-jre.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/30.1-jre/guava-parent-30.1-jre.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/30.1-jre/guava-parent-30.1-jre.pom (14 kB at 501 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom (2.4 kB at 93 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 392 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 88 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 165 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.pom (2.2 kB at 80 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom (2.1 kB at 81 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom (5.4 kB at 209 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom (2.8 kB at 106 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/base/5a4a9442e5e2516aed5f25636ac236682aace7b9/base-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/base/5a4a9442e5e2516aed5f25636ac236682aace7b9/base-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (4.9 kB at 47 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/grammars/5a4a9442e5e2516aed5f25636ac236682aace7b9/grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/grammars/5a4a9442e5e2516aed5f25636ac236682aace7b9/grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (4.9 kB at 66 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/jaxb-core/2.3.0.1/jaxb-core-2.3.0.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.3.0.1/jaxb-core-2.3.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.3.0.1/jaxb-core-2.3.0.1.pom (16 kB at 599 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/mvn/jaxb-bundles/2.3.0.1/jaxb-bundles-2.3.0.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-bundles/2.3.0.1/jaxb-bundles-2.3.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-bundles/2.3.0.1/jaxb-bundles-2.3.0.1.pom (2.9 kB at 117 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/mvn/jaxb-parent/2.3.0.1/jaxb-parent-2.3.0.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.3.0.1/jaxb-parent-2.3.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.3.0.1/jaxb-parent-2.3.0.1.pom (43 kB at 1.5 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/jaxb-bom-ext/2.3.0.1/jaxb-bom-ext-2.3.0.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.3.0.1/jaxb-bom-ext-2.3.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.3.0.1/jaxb-bom-ext-2.3.0.1.pom (5.4 kB at 208 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jaxb/jaxb-bom/2.3.0.1/jaxb-bom-2.3.0.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/2.3.0.1/jaxb-bom-2.3.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/2.3.0.1/jaxb-bom-2.3.0.1.pom (11 kB at 410 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/java/jvnet-parent/5/jvnet-parent-5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/5/jvnet-parent-5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/5/jvnet-parent-5.pom (8.9 kB at 355 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-io/commons-io/2.6/commons-io-2.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 528 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-parent/42/commons-parent-42.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 2.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/activation/activation/1.1.1/activation-1.1.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1.1/activation-1.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1.1/activation-1.1.1.pom (644 B at 25 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.pom (20 kB at 775 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api-parent/2.3.1/jaxb-api-parent-2.3.1.pom (8.1 kB at 312 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.pom (4.9 kB at 189 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/activation/all/1.2.0/all-1.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.0/all-1.2.0.pom (18 kB at 619 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/net/java/jvnet-parent/1/jvnet-parent-1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 188 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.pom (3.6 kB at 139 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/antlr/antlr4-master/4.9.1/antlr4-master-4.9.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.9.1/antlr4-master-4.9.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.9.1/antlr4-master-4.9.1.pom (4.4 kB at 169 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.pom (30 kB at 1.1 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-parent/51/commons-parent-51.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/51/commons-parent-51.pom (78 kB at 2.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-text/1.9/commons-text-1.9.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.pom (17 kB at 624 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/reflections/reflections/0.9.12/reflections-0.9.12.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.pom (9.4 kB at 334 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.pom (11 kB at 347 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/jaxb-impl/2.3.3/jaxb-impl-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.3.3/jaxb-impl-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.3.3/jaxb-impl-2.3.3.pom (14 kB at 491 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/mvn/jaxb-bundles/2.3.3/jaxb-bundles-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-bundles/2.3.3/jaxb-bundles-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-bundles/2.3.3/jaxb-bundles-2.3.3.pom (1.3 kB at 49 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/mvn/jaxb-parent/2.3.3/jaxb-parent-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.3.3/jaxb-parent-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-parent/2.3.3/jaxb-parent-2.3.3.pom (29 kB at 925 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/jaxb-bom-ext/2.3.3/jaxb-bom-ext-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.3.3/jaxb-bom-ext-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-bom-ext/2.3.3/jaxb-bom-ext-2.3.3.pom (3.4 kB at 131 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jaxb/jaxb-bom/2.3.3/jaxb-bom-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/2.3.3/jaxb-bom-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-bom/2.3.3/jaxb-bom-2.3.3.pom (8.2 kB at 222 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.pom (4.6 kB at 185 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/threeten/threeten-extra/1.5.0/threeten-extra-1.5.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.5.0/threeten-extra-1.5.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.5.0/threeten-extra-1.5.0.pom (33 kB at 832 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/bmm/5a4a9442e5e2516aed5f25636ac236682aace7b9/bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/bmm/5a4a9442e5e2516aed5f25636ac236682aace7b9/bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (5.4 kB at 62 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/odin/5a4a9442e5e2516aed5f25636ac236682aace7b9/odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/odin/5a4a9442e5e2516aed5f25636ac236682aace7b9/odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (5.1 kB at 55 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (4.9 kB at 59 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-terminology/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-terminology/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (4.7 kB at 38 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-all/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-all/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (6.1 kB at 80 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (5.4 kB at 72 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (5.6 kB at 64 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/path-queries/5a4a9442e5e2516aed5f25636ac236682aace7b9/path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/path-queries/5a4a9442e5e2516aed5f25636ac236682aace7b9/path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (5.4 kB at 84 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/i18n/5a4a9442e5e2516aed5f25636ac236682aace7b9/i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/i18n/5a4a9442e5e2516aed5f25636ac236682aace7b9/i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (4.7 kB at 60 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/referencemodels/5a4a9442e5e2516aed5f25636ac236682aace7b9/referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/referencemodels/5a4a9442e5e2516aed5f25636ac236682aace7b9/referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (5.4 kB at 63 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/tools/5a4a9442e5e2516aed5f25636ac236682aace7b9/tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/tools/5a4a9442e5e2516aed5f25636ac236682aace7b9/tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (6.7 kB at 97 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jakarta.json/1.1.6/jakarta.json-1.1.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.json/1.1.6/jakarta.json-1.1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.json/1.1.6/jakarta.json-1.1.6.pom (11 kB at 435 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/json/1.1.6/json-1.1.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.1.6/json-1.1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.1.6/json-1.1.6.pom (19 kB at 726 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/leadpony/justify/justify/2.1.0/justify-2.1.0.pom | |
Downloaded from jitpack.io: https://jitpack.io/org/leadpony/justify/justify/2.1.0/justify-2.1.0.pom (5.7 kB at 74 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/leadpony/justify/justify-parent/2.1.0/justify-parent-2.1.0.pom | |
Downloaded from jitpack.io: https://jitpack.io/org/leadpony/justify/justify-parent/2.1.0/justify-parent-2.1.0.pom (9.3 kB at 109 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/json/jakarta.json-api/1.1.6/jakarta.json-api-1.1.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/json/jakarta.json-api/1.1.6/jakarta.json-api-1.1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/json/jakarta.json-api/1.1.6/jakarta.json-api-1.1.6.pom (6.0 kB at 231 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/ibm/icu/icu4j/65.1/icu4j-65.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/65.1/icu4j-65.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/65.1/icu4j-65.1.pom (4.9 kB at 190 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/test-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/test-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.pom (5.8 kB at 94 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.pom (21 kB at 820 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-parent/38/commons-parent-38.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/38/commons-parent-38.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/38/commons-parent-38.pom (62 kB at 2.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/cache/cache-api/1.1.1/cache-api-1.1.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.pom (12 kB at 456 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/building/39cb1fd/building-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/building/39cb1fd/building-39cb1fd.pom (1.3 kB at 21 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-rm/dc09642/openehr-rm-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-rm/dc09642/openehr-rm-dc09642.pom (5.4 kB at 68 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/aom/dc09642/aom-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/aom/dc09642/aom-dc09642.pom (5.8 kB at 90 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/base/dc09642/base-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/base/dc09642/base-dc09642.pom (4.8 kB at 48 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/grammars/dc09642/grammars-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/grammars/dc09642/grammars-dc09642.pom (4.8 kB at 65 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/bmm/dc09642/bmm-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/bmm/dc09642/bmm-dc09642.pom (5.2 kB at 76 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/odin/dc09642/odin-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/odin/dc09642/odin-dc09642.pom (5.0 kB at 66 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/utils/dc09642/utils-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/utils/dc09642/utils-dc09642.pom (4.8 kB at 78 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-terminology/dc09642/openehr-terminology-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-terminology/dc09642/openehr-terminology-dc09642.pom (4.7 kB at 54 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/path-queries/dc09642/path-queries-dc09642.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/path-queries/dc09642/path-queries-dc09642.pom (5.2 kB at 81 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/everit-org/json-schema/org.everit.json.schema/1.12.1/org.everit.json.schema-1.12.1.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/everit-org/json-schema/org.everit.json.schema/1.12.1/org.everit.json.schema-1.12.1.pom (8.2 kB at 102 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/json/json/20190722/json-20190722.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/json/json/20190722/json-20190722.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/json/json/20190722/json-20190722.pom (6.0 kB at 239 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-validator/commons-validator/1.6/commons-validator-1.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.pom (12 kB at 446 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.pom (10 kB at 386 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-parent/11/commons-parent-11.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 913 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-logging/commons-logging/1.2/commons-logging-1.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 739 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-parent/34/commons-parent-34.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 1.9 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.pom (27 kB at 984 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/joda-time/joda-time/2.10.6/joda-time-2.10.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.pom (37 kB at 1.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/re2j/re2j/1.3/re2j-1.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.3/re2j-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.3/re2j-1.3.pom (933 B at 36 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.pom (11 kB at 352 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/29.0-jre/guava-parent-29.0-jre.pom (13 kB at 505 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.pom (2.4 kB at 89 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/json/json/20140107/json-20140107.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/json/json/20140107/json-20140107.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/json/json/20140107/json-20140107.pom (4.2 kB at 161 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.11.3/jackson-dataformat-xml-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.11.3/jackson-dataformat-xml-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.11.3/jackson-dataformat-xml-2.11.3.pom (6.8 kB at 250 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.3/jackson-module-jaxb-annotations-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.3/jackson-module-jaxb-annotations-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.3/jackson-module-jaxb-annotations-2.11.3.pom (3.5 kB at 131 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/module/jackson-modules-base/2.11.3/jackson-modules-base-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.11.3/jackson-modules-base-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.11.3/jackson-modules-base-2.11.3.pom (3.4 kB at 126 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 233 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/woodstox/woodstox-core/6.2.1/woodstox-core-6.2.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.2.1/woodstox-core-6.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.2.1/woodstox-core-6.2.1.pom (8.3 kB at 306 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/code/gson/gson/2.8.6/gson-2.8.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.pom (2.5 kB at 101 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/code/gson/gson-parent/2.8.6/gson-parent-2.8.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.6/gson-parent-2.8.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.6/gson-parent-2.8.6.pom (4.4 kB at 177 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/response-dto/39cb1fd/response-dto-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/response-dto/39cb1fd/response-dto-39cb1fd.pom (989 B at 7.9 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/swagger/swagger-annotations/1.6.2/swagger-annotations-1.6.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.6.2/swagger-annotations-1.6.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.6.2/swagger-annotations-1.6.2.pom (6.2 kB at 223 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/swagger/swagger-project/1.6.2/swagger-project-1.6.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-project/1.6.2/swagger-project-1.6.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-project/1.6.2/swagger-project-1.6.2.pom (26 kB at 878 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/sonatype/oss/oss-parent/5/oss-parent-5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/5/oss-parent-5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/5/oss-parent-5.pom (4.1 kB at 141 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.pom (1.4 kB at 54 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/serialisation/39cb1fd/serialisation-39cb1fd.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/building/39cb1fd/building-39cb1fd.jar | |
Downloading from jitpack.io: https://jitpack.io/commons-validator/commons-validator/1.6/commons-validator-1.6.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/everit-org/json-schema/org.everit.json.schema/1.12.1/org.everit.json.schema-1.12.1.jar | |
Downloading from jitpack.io: https://jitpack.io/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar | |
Downloading from jitpack.io: https://jitpack.io/commons-logging/commons-logging/1.2/commons-logging-1.2.jar | |
Downloading from jitpack.io: https://jitpack.io/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar | |
Downloading from jitpack.io: https://jitpack.io/joda-time/joda-time/2.10.6/joda-time-2.10.6.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/serialisation/39cb1fd/serialisation-39cb1fd.jar (330 kB at 2.7 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/re2j/re2j/1.3/re2j-1.3.jar | |
Downloading from jitpack.io: https://jitpack.io/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/everit-org/json-schema/org.everit.json.schema/1.12.1/org.everit.json.schema-1.12.1.jar (241 kB at 1.6 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/building/39cb1fd/building-39cb1fd.jar (28 kB at 137 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/json/json/20140107/json-20140107.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/core/jackson-databind/2.11.3/jackson-databind-2.11.3.jar | |
Downloading from jitpack.io: https://jitpack.io/commons-io/commons-io/2.6/commons-io-2.6.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/util/39cb1fd/util-39cb1fd.jar | |
Downloading from jitpack.io: https://jitpack.io/io/github/classgraph/classgraph/4.8.98/classgraph-4.8.98.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/util/39cb1fd/util-39cb1fd.jar (7.6 kB at 11 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/response-dto/39cb1fd/response-dto-39cb1fd.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.11.3/jackson-dataformat-xml-2.11.3.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.3/jackson-module-jaxb-annotations-2.11.3.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/response-dto/39cb1fd/response-dto-39cb1fd.jar (36 kB at 49 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/woodstox/woodstox-core/6.2.1/woodstox-core-6.2.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/aom/5a4a9442e5e2516aed5f25636ac236682aace7b9/aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloading from jitpack.io: https://jitpack.io/com/esotericsoftware/kryo-shaded/4.0.2/kryo-shaded-4.0.2.jar | |
Downloading from jitpack.io: https://jitpack.io/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (350 B at 288 B/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.jar | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/jaxb-core/2.3.0.1/jaxb-core-2.3.0.1.jar | |
Downloading from jitpack.io: https://jitpack.io/javax/activation/activation/1.1.1/activation-1.1.1.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/zafarkhaja/java-semver/0.9.0/java-semver-0.9.0.jar (47 kB at 36 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-text/1.9/commons-text-1.9.jar | |
Downloading from jitpack.io: https://jitpack.io/org/reflections/reflections/0.9.12/reflections-0.9.12.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/aom/5a4a9442e5e2516aed5f25636ac236682aace7b9/aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (343 kB at 259 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.jar | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/jaxb-impl/2.3.3/jaxb-impl-2.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/threeten/threeten-extra/1.5.0/threeten-extra-1.5.0.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-all/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/base/5a4a9442e5e2516aed5f25636ac236682aace7b9/base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-all/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (261 B at 178 B/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/bmm/5a4a9442e5e2516aed5f25636ac236682aace7b9/bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/archie-utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (21 kB at 14 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/grammars/5a4a9442e5e2516aed5f25636ac236682aace7b9/grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/bmm/5a4a9442e5e2516aed5f25636ac236682aace7b9/bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (124 kB at 79 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/base/5a4a9442e5e2516aed5f25636ac236682aace7b9/base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (28 kB at 18 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/i18n/5a4a9442e5e2516aed5f25636ac236682aace7b9/i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/odin/5a4a9442e5e2516aed5f25636ac236682aace7b9/odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-terminology/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/i18n/5a4a9442e5e2516aed5f25636ac236682aace7b9/i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (13 kB at 7.6 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/path-queries/5a4a9442e5e2516aed5f25636ac236682aace7b9/path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/grammars/5a4a9442e5e2516aed5f25636ac236682aace7b9/grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (2.2 MB at 1.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/referencemodels/5a4a9442e5e2516aed5f25636ac236682aace7b9/referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-terminology/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (30 kB at 17 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/test-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/openehr-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (182 kB at 105 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/tools/5a4a9442e5e2516aed5f25636ac236682aace7b9/tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/odin/5a4a9442e5e2516aed5f25636ac236682aace7b9/odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (77 kB at 44 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jakarta.json/1.1.6/jakarta.json-1.1.6-module.jar | |
Downloading from jitpack.io: https://jitpack.io/org/leadpony/justify/justify/2.1.0/justify-2.1.0.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/referencemodels/5a4a9442e5e2516aed5f25636ac236682aace7b9/referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (179 kB at 100 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/json/jakarta.json-api/1.1.6/jakarta.json-api-1.1.6.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/test-rm/5a4a9442e5e2516aed5f25636ac236682aace7b9/test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (18 kB at 10 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/ibm/icu/icu4j/65.1/icu4j-65.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/openEHR/archie/utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/tools/5a4a9442e5e2516aed5f25636ac236682aace7b9/tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (260 kB at 143 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/core/jackson-annotations/2.11.3/jackson-annotations-2.11.3.jar | |
Downloading from jitpack.io: https://jitpack.io/io/swagger/swagger-annotations/1.6.2/swagger-annotations-1.6.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/utils/5a4a9442e5e2516aed5f25636ac236682aace7b9/utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (34 kB at 18 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/web-template/39cb1fd/web-template-39cb1fd.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/openEHR/archie/path-queries/5a4a9442e5e2516aed5f25636ac236682aace7b9/path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar (6.8 kB at 3.6 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/opt-1.4/39cb1fd/opt-1.4-39cb1fd.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.jar | |
Downloaded from jitpack.io: https://jitpack.io/org/leadpony/justify/justify/2.1.0/justify-2.1.0.jar (529 kB at 278 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/terminology/39cb1fd/terminology-39cb1fd.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/terminology/39cb1fd/terminology-39cb1fd.jar (49 kB at 24 kB/s) | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/web-template/39cb1fd/web-template-39cb1fd.jar (100 kB at 50 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.jar | |
Downloading from jitpack.io: https://jitpack.io/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/opt-1.4/39cb1fd/opt-1.4-39cb1fd.jar (1.4 MB at 668 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar (62 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.3/re2j-1.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.6/commons-validator-1.6.jar (186 kB at 3.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8.1/commons-digester-1.8.1.jar (146 kB at 2.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.6/joda-time-2.10.6.jar (644 kB at 6.6 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar (57 kB at 578 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.1/jaxb-api-2.3.1.jar (128 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.3/re2j-1.3.jar (121 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar (4.6 kB at 37 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/damnhandy/handy-uri-templates/2.1.8/handy-uri-templates-2.1.8.jar (46 kB at 354 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 139 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 13 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/json/json/20140107/json-20140107.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar (14 kB at 82 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.11.3/jackson-databind-2.11.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.11.1/checker-qual-2.11.1.jar (201 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar (8.8 kB at 49 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/json/json/20140107/json-20140107.jar (65 kB at 261 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 762 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.98/classgraph-4.8.98.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.1/commons-collections4-4.1.jar (751 kB at 2.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.11.3/jackson-dataformat-xml-2.11.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar (240 kB at 646 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.11.3/jackson-dataformat-xml-2.11.3.jar (110 kB at 234 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.3/jackson-module-jaxb-annotations-2.11.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.11.3/jackson-core-2.11.3.jar (351 kB at 729 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/29.0-jre/guava-29.0-jre.jar (2.8 MB at 5.8 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.11.3/jackson-databind-2.11.3.jar (1.4 MB at 2.9 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.2.1/woodstox-core-6.2.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.3/jackson-module-jaxb-annotations-2.11.3.jar (35 kB at 70 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo-shaded/4.0.2/kryo-shaded-4.0.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.98/classgraph-4.8.98.jar (528 kB at 976 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 352 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.3.0.1/jaxb-core-2.3.0.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.10/jackson-datatype-jsr310-2.9.10.jar (101 kB at 181 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1.1/activation-1.1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/kryo-shaded/4.0.2/kryo-shaded-4.0.2.jar (411 kB at 692 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.jar (5.7 kB at 9.4 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-core/2.3.0.1/jaxb-core-2.3.0.1.jar (255 kB at 405 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1.1/activation-1.1.1.jar (69 kB at 106 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.3.3/jaxb-impl-2.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.9/commons-text-1.9.jar (216 kB at 327 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.2.1/woodstox-core-6.2.1.jar (1.6 MB at 2.4 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.5.0/threeten-extra-1.5.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.9.12/reflections-0.9.12.jar (106 kB at 158 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/activation/jakarta.activation/1.2.2/jakarta.activation-1.2.2.jar (68 kB at 95 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.json/1.1.6/jakarta.json-1.1.6-module.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.26.0-GA/javassist-3.26.0-GA.jar (783 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/json/jakarta.json-api/1.1.6/jakarta.json-api-1.1.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar (338 kB at 446 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/threeten/threeten-extra/1.5.0/threeten-extra-1.5.0.jar (234 kB at 308 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/65.1/icu4j-65.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.11.3/jackson-annotations-2.11.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.json/1.1.6/jakarta.json-1.1.6-module.jar (114 kB at 148 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.6.2/swagger-annotations-1.6.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/json/jakarta.json-api/1.1.6/jakarta.json-api-1.1.6.jar (43 kB at 56 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.11.3/jackson-annotations-2.11.3.jar (68 kB at 85 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.2/hamcrest-core-2.2.jar (1.5 kB at 1.8 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.6.2/swagger-annotations-1.6.2.jar (22 kB at 25 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar (51 kB at 50 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/jaxb-impl/2.3.3/jaxb-impl-2.3.3.jar (1.1 MB at 1.1 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.11/commons-lang3-3.11.jar (578 kB at 550 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.jar (2.6 MB at 2.1 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/65.1/icu4j-65.1.jar (13 MB at 7.3 MB/s) | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ api --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/api/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ api --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom (770 B at 30 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom (5.0 kB at 201 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 796 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom (4.7 kB at 137 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom (5.7 kB at 162 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 135 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom (5.6 kB at 215 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom (5.1 kB at 160 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom (37 kB at 985 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom (15 kB at 586 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 391 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 1.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 583 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom (965 B at 37 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 165 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom (1.5 kB at 62 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom (3.1 kB at 128 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom (3.2 kB at 128 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom (8.4 kB at 321 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 511 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom (2.6 kB at 105 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar (4.3 kB at 165 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar (51 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar (32 kB at 817 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar (155 kB at 3.0 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (8.5 kB at 160 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar (262 kB at 4.5 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar (79 kB at 1.1 MB/s) | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /api/src/main/resources | |
[INFO] skip non existing resourceDirectory /api/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ api --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 176 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 119 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom (1.5 kB at 43 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom (22 kB at 830 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom (12 kB at 431 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom (2.2 kB at 84 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom (3.2 kB at 120 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom (2.0 kB at 75 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom (1.9 kB at 76 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom (7.9 kB at 305 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom (3.0 kB at 119 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom (2.2 kB at 87 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom (2.2 kB at 87 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom (1.6 kB at 66 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom (1.9 kB at 78 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom (1.7 kB at 68 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom (2.8 kB at 107 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom (3.1 kB at 124 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom (1.9 kB at 77 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom (2.1 kB at 83 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom (1.3 kB at 48 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom (4.0 kB at 162 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom (4.9 kB at 183 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/11/apache-11.pom (15 kB at 529 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom (5.1 kB at 196 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom (4.1 kB at 148 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.pom (2.9 kB at 117 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.pom (16 kB at 587 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.8.4/plexus-compiler-api-2.8.4.pom (867 B at 33 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.8.4/plexus-compiler-2.8.4.pom (6.0 kB at 232 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 106 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.8.4/plexus-compiler-manager-2.8.4.pom (692 B at 28 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.8.4/plexus-compiler-javac-2.8.4.pom (771 B at 30 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.8.4/plexus-compilers-2.8.4.pom (1.3 kB at 54 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.jar (111 kB at 2.5 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.jar (222 kB at 4.4 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M9/qdox-2.0-M9.jar (317 kB at 4.8 MB/s) | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ api >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ api --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.2.0/maven-jar-plugin-3.2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.2.0/maven-jar-plugin-3.2.0.jar (29 kB at 1.0 MB/s) | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/plugins/maven-jar-plugin/3.2.0/maven-jar-plugin-3.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.2.0/maven-jar-plugin-3.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.2.0/maven-jar-plugin-3.2.0.pom (7.3 kB at 227 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar (35 kB at 1.3 MB/s) | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ api <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ api --- | |
[INFO] Resolved: serialisation-39cb1fd.jar | |
[INFO] Resolved: building-39cb1fd.jar | |
[INFO] Resolved: org.everit.json.schema-1.12.1.jar | |
[INFO] Resolved: commons-validator-1.6.jar | |
[INFO] Resolved: commons-digester-1.8.1.jar | |
[INFO] Resolved: commons-logging-1.2.jar | |
[INFO] Resolved: commons-collections-3.2.2.jar | |
[INFO] Resolved: handy-uri-templates-2.1.8.jar | |
[INFO] Resolved: joda-time-2.10.6.jar | |
[INFO] Resolved: re2j-1.3.jar | |
[INFO] Resolved: jaxb-api-2.3.1.jar | |
[INFO] Resolved: javax.activation-api-1.2.0.jar | |
[INFO] Resolved: guava-29.0-jre.jar | |
[INFO] Resolved: failureaccess-1.0.1.jar | |
[INFO] Resolved: listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar | |
[INFO] Resolved: jsr305-3.0.2.jar | |
[INFO] Resolved: checker-qual-2.11.1.jar | |
[INFO] Resolved: error_prone_annotations-2.3.4.jar | |
[INFO] Resolved: j2objc-annotations-1.3.jar | |
[INFO] Resolved: json-20140107.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: jackson-databind-2.11.3.jar | |
[INFO] Resolved: commons-io-2.6.jar | |
[INFO] Resolved: commons-collections4-4.1.jar | |
[INFO] Resolved: gson-2.8.6.jar | |
[INFO] Resolved: util-39cb1fd.jar | |
[INFO] Resolved: classgraph-4.8.98.jar | |
[INFO] Resolved: response-dto-39cb1fd.jar | |
[INFO] Resolved: jackson-dataformat-xml-2.11.3.jar | |
[INFO] Resolved: jackson-core-2.11.3.jar | |
[INFO] Resolved: jackson-module-jaxb-annotations-2.11.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: stax2-api-4.2.1.jar | |
[INFO] Resolved: woodstox-core-6.2.1.jar | |
[INFO] Resolved: jackson-datatype-jsr310-2.9.10.jar | |
[INFO] Resolved: archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: kryo-shaded-4.0.2.jar | |
[INFO] Resolved: minlog-1.3.0.jar | |
[INFO] Resolved: java-semver-0.9.0.jar | |
[INFO] Resolved: jaxb-core-2.3.0.1.jar | |
[INFO] Resolved: activation-1.1.1.jar | |
[INFO] Resolved: commons-text-1.9.jar | |
[INFO] Resolved: reflections-0.9.12.jar | |
[INFO] Resolved: javassist-3.26.0-GA.jar | |
[INFO] Resolved: jaxb-impl-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-1.2.2.jar | |
[INFO] Resolved: threeten-extra-1.5.0.jar | |
[INFO] Resolved: archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: antlr4-runtime-4.9.1.jar | |
[INFO] Resolved: i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jakarta.json-1.1.6-module.jar | |
[INFO] Resolved: justify-2.1.0.jar | |
[INFO] Resolved: jakarta.json-api-1.1.6.jar | |
[INFO] Resolved: icu4j-65.1.jar | |
[INFO] Resolved: utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jackson-annotations-2.11.3.jar | |
[INFO] Resolved: swagger-annotations-1.6.2.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: hamcrest-core-2.2.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: web-template-39cb1fd.jar | |
[INFO] Resolved: opt-1.4-39cb1fd.jar | |
[INFO] Resolved: xmlbeans-3.1.0.jar | |
[INFO] Resolved: terminology-39cb1fd.jar | |
[INFO] Resolved: commons-lang3-3.11.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: cache-api-1.1.1.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] ----------------------< org.ehrbase.openehr:base >---------------------- | |
[INFO] Building base 0.16.5 [3/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
Downloading from jitpack.io: https://jitpack.io/org/flywaydb/flyway-core/6.5.7/flyway-core-6.5.7.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/6.5.7/flyway-core-6.5.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/6.5.7/flyway-core-6.5.7.pom (7.3 kB at 282 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/flywaydb/flyway-parent/6.5.7/flyway-parent-6.5.7.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-parent/6.5.7/flyway-parent-6.5.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-parent/6.5.7/flyway-parent-6.5.7.pom (25 kB at 941 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/flywaydb/flyway-core/6.5.7/flyway-core-6.5.7.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/6.5.7/flyway-core-6.5.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-core/6.5.7/flyway-core-6.5.7.jar (585 kB at 8.0 MB/s) | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ base --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/base/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ base --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 52 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ base --- | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ base >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ base --- | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ base <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ base --- | |
[INFO] Resolved: flyway-core-6.5.7.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] --------------------< org.ehrbase.openehr:jooq-pg >--------------------- | |
[INFO] Building jooq-pq 0.16.5 [4/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/6.5.7/flyway-maven-plugin-6.5.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/6.5.7/flyway-maven-plugin-6.5.7.pom (4.5 kB at 167 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/6.5.7/flyway-maven-plugin-6.5.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/flywaydb/flyway-maven-plugin/6.5.7/flyway-maven-plugin-6.5.7.jar (109 kB at 3.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.12.3/jooq-codegen-maven-3.12.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.12.3/jooq-codegen-maven-3.12.3.pom (3.5 kB at 130 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-parent/3.12.3/jooq-parent-3.12.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-parent/3.12.3/jooq-parent-3.12.3.pom (15 kB at 560 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.12.3/jooq-codegen-maven-3.12.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen-maven/3.12.3/jooq-codegen-maven-3.12.3.jar (17 kB at 254 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jooq/jooq/3.12.3/jooq-3.12.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq/3.12.3/jooq-3.12.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq/3.12.3/jooq-3.12.3.pom (3.6 kB at 130 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom (1.2 kB at 45 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jooq/jooq-codegen/3.12.3/jooq-codegen-3.12.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen/3.12.3/jooq-codegen-3.12.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen/3.12.3/jooq-codegen-3.12.3.pom (1.6 kB at 60 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jooq/jooq-meta/3.12.3/jooq-meta-3.12.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-meta/3.12.3/jooq-meta-3.12.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-meta/3.12.3/jooq-meta-3.12.3.pom (1.4 kB at 54 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-plugin-api/3.6.0/maven-plugin-api-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.0/maven-plugin-api-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.0/maven-plugin-api-3.6.0.pom (2.9 kB at 113 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven/3.6.0/maven-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.6.0/maven-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.6.0/maven-3.6.0.pom (24 kB at 855 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.pom (3.9 kB at 150 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.pom (2.1 kB at 78 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.3/org.eclipse.sisu.plexus-0.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.3/org.eclipse.sisu.plexus-0.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.3/org.eclipse.sisu.plexus-0.3.3.pom (4.2 kB at 160 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/sisu/sisu-plexus/0.3.3/sisu-plexus-0.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.3/sisu-plexus-0.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.3/sisu-plexus-0.3.3.pom (14 kB at 508 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 55 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 94 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 304 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/weld/weld-parent/6/weld-parent-6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 766 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 38 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/inject/javax.inject/1/javax.inject-1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 24 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.pom (2.6 kB at 101 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/sisu/sisu-inject/0.3.3/sisu-inject-0.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.3/sisu-inject-0.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.3/sisu-inject-0.3.3.pom (14 kB at 534 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 281 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 136 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-core/3.6.0/maven-core-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.6.0/maven-core-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.6.0/maven-core-3.6.0.pom (8.4 kB at 312 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-settings/3.6.0/maven-settings-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.6.0/maven-settings-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.6.0/maven-settings-3.6.0.pom (1.8 kB at 70 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-settings-builder/3.6.0/maven-settings-builder-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.6.0/maven-settings-builder-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.6.0/maven-settings-builder-3.6.0.pom (2.5 kB at 96 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-builder-support/3.6.0/maven-builder-support-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.6.0/maven-builder-support-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.6.0/maven-builder-support-3.6.0.pom (1.4 kB at 53 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 102 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 866 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 118 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-repository-metadata/3.6.0/maven-repository-metadata-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.6.0/maven-repository-metadata-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.6.0/maven-repository-metadata-3.6.0.pom (1.9 kB at 73 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-model-builder/3.6.0/maven-model-builder-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.6.0/maven-model-builder-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.6.0/maven-model-builder-3.6.0.pom (3.0 kB at 116 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-resolver-provider/3.6.0/maven-resolver-provider-3.6.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.6.0/maven-resolver-provider-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.6.0/maven-resolver-provider-3.6.0.pom (4.2 kB at 156 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-api/1.3.1/maven-resolver-api-1.3.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.3.1/maven-resolver-api-1.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.3.1/maven-resolver-api-1.3.1.pom (2.5 kB at 94 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver/1.3.1/maven-resolver-1.3.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.3.1/maven-resolver-1.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.3.1/maven-resolver-1.3.1.pom (17 kB at 598 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-spi/1.3.1/maven-resolver-spi-1.3.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.3.1/maven-resolver-spi-1.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.3.1/maven-resolver-spi-1.3.1.pom (2.6 kB at 89 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-util/1.3.1/maven-resolver-util-1.3.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.3.1/maven-resolver-util-1.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.3.1/maven-resolver-util-1.3.1.pom (2.7 kB at 101 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-impl/1.3.1/maven-resolver-impl-1.3.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.3.1/maven-resolver-impl-1.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.3.1/maven-resolver-impl-1.3.1.pom (3.9 kB at 152 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/inject/guice/4.2.1/guice-4.2.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1.pom (11 kB at 406 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.2.1/guice-parent-4.2.1.pom (16 kB at 597 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/google/5/google-5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 98 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/aopalliance/aopalliance/1.0/aopalliance-1.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 14 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava/25.1-android/guava-25.1-android.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.pom (7.8 kB at 299 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-android/guava-parent-25.1-android.pom (10 kB at 377 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.pom (4.2 kB at 162 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom (1.8 kB at 64 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom (5.1 kB at 196 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (2.8 kB at 106 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (2.5 kB at 94 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (4.4 kB at 169 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 901 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 193 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jooq/jooq/3.12.3/jooq-3.12.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/jooq/jooq-codegen/3.12.3/jooq-codegen-3.12.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/jooq/jooq-meta/3.12.3/jooq-meta-3.12.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-plugin-api/3.6.0/maven-plugin-api-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.3/org.eclipse.sisu.plexus-0.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar | |
Downloading from jitpack.io: https://jitpack.io/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-core/3.6.0/maven-core-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-settings/3.6.0/maven-settings-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-settings-builder/3.6.0/maven-settings-builder-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar | |
Downloading from jitpack.io: https://jitpack.io/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-builder-support/3.6.0/maven-builder-support-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-repository-metadata/3.6.0/maven-repository-metadata-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-model-builder/3.6.0/maven-model-builder-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-resolver-provider/3.6.0/maven-resolver-provider-3.6.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-impl/1.3.1/maven-resolver-impl-1.3.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-api/1.3.1/maven-resolver-api-1.3.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-spi/1.3.1/maven-resolver-spi-1.3.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/resolver/maven-resolver-util/1.3.1/maven-resolver-util-1.3.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar | |
Downloading from jitpack.io: https://jitpack.io/aopalliance/aopalliance/1.0/aopalliance-1.0.jar | |
Downloading from jitpack.io: https://jitpack.io/javax/inject/javax.inject/1/javax.inject-1.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq/3.12.3/jooq-3.12.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen/3.12.3/jooq-codegen-3.12.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.0/maven-plugin-api-3.6.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-meta/3.12.3/jooq-meta-3.12.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar (11 kB at 284 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.0/maven-plugin-api-3.6.0.jar (48 kB at 975 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-codegen/3.12.3/jooq-codegen-3.12.3.jar (153 kB at 1.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.3/org.eclipse.sisu.plexus-0.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq-meta/3.12.3/jooq-meta-3.12.3.jar (532 kB at 5.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.jar (55 kB at 551 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.6.0/maven-model-3.6.0.jar (166 kB at 1.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 44 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.6.0/maven-core-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 330 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.6.0/maven-settings-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar (53 kB at 385 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.6.0/maven-settings-builder-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.3/org.eclipse.sisu.plexus-0.3.3.jar (205 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.6.0/maven-settings-3.6.0.jar (45 kB at 245 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.6.0/maven-settings-builder-3.6.0.jar (43 kB at 236 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.6.0/maven-builder-support-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 388 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.6.0/maven-repository-metadata-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 124 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.6.0/maven-model-builder-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.6.0/maven-core-3.6.0.jar (632 kB at 2.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.6.0/maven-resolver-provider-3.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.6.0/maven-builder-support-3.6.0.jar (15 kB at 64 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.3.1/maven-resolver-impl-1.3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.6.0/maven-repository-metadata-3.6.0.jar (27 kB at 104 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.3.1/maven-resolver-api-1.3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-resolver-provider/3.6.0/maven-resolver-provider-3.6.0.jar (67 kB at 244 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.3.1/maven-resolver-spi-1.3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-impl/1.3.1/maven-resolver-impl-1.3.1.jar (182 kB at 640 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.3.1/maven-resolver-util-1.3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.6.0/maven-model-builder-3.6.0.jar (178 kB at 613 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-spi/1.3.1/maven-resolver-spi-1.3.1.jar (37 kB at 120 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.3.1/maven-resolver-api-1.3.1.jar (149 kB at 436 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.3.1/maven-resolver-util-1.3.1.jar (160 kB at 447 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jooq/jooq/3.12.3/jooq-3.12.3.jar (2.6 MB at 7.1 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.3/org.eclipse.sisu.inject-0.3.3.jar (379 kB at 1.0 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 12 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.2.1/guice-4.2.1-no_aop.jar (521 kB at 1.3 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 6.5 kB/s) | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ jooq-pg --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/jooq-pq/target/jacoco.exec | |
[INFO] | |
[INFO] --- flyway-maven-plugin:6.5.7:migrate (default) @ jooq-pg --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.2.18/postgresql-42.2.18.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.2.18/postgresql-42.2.18.pom (3.0 kB at 98 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.2.18/postgresql-42.2.18.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar (214 kB at 3.8 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar (228 kB at 2.9 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/postgresql/postgresql/42.2.18/postgresql-42.2.18.jar (1.0 MB at 9.7 MB/s) | |
[INFO] Skipping Flyway execution | |
[INFO] | |
[INFO] --- jooq-codegen-maven:3.12.3:generate (default) @ jooq-pg --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.pom (1.2 kB at 45 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.pom (23 kB at 718 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api-parent/2.3.0/jaxb-api-parent-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api-parent/2.3.0/jaxb-api-parent-2.3.0.pom (5.6 kB at 209 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 1.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 2.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.pom (1.7 kB at 59 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.8.0-beta4/slf4j-parent-1.8.0-beta4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.8.0-beta4/slf4j-parent-1.8.0-beta4.pom (17 kB at 566 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar (14 kB at 457 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar (2.1 kB at 68 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.0.0/checker-compat-qual-2.0.0.jar (32 kB at 986 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/xml/bind/jaxb-api/2.3.0/jaxb-api-2.3.0.jar (126 kB at 1.9 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (8.8 kB at 116 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (3.5 kB at 46 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 4.2 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-android/guava-25.1-android.jar (2.6 MB at 13 MB/s) | |
[INFO] Skipping jOOQ code generation | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ jooq-pg --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /jooq-pq/src/main/resources | |
[INFO] skip non existing resourceDirectory /jooq-pq/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ jooq-pg --- | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ jooq-pg >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ jooq-pg --- | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: jooq-codegen-maven-3.12.3.jar | |
[INFO] Plugin Dependency Resolved: jooq-codegen-3.12.3.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.6.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: flyway-maven-plugin-6.5.7.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-sec-dispatcher-1.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.15.jar | |
[INFO] Plugin Dependency Resolved: flyway-core-6.5.7.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ jooq-pg <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ jooq-pg --- | |
[INFO] Resolved: base-0.16.5.jar | |
[INFO] Resolved: flyway-core-6.5.7.jar | |
[INFO] Resolved: serialisation-39cb1fd.jar | |
[INFO] Resolved: web-template-39cb1fd.jar | |
[INFO] Resolved: opt-1.4-39cb1fd.jar | |
[INFO] Resolved: xmlbeans-3.1.0.jar | |
[INFO] Resolved: terminology-39cb1fd.jar | |
[INFO] Resolved: commons-lang3-3.11.jar | |
[INFO] Resolved: cache-api-1.1.1.jar | |
[INFO] Resolved: building-39cb1fd.jar | |
[INFO] Resolved: org.everit.json.schema-1.12.1.jar | |
[INFO] Resolved: commons-validator-1.6.jar | |
[INFO] Resolved: commons-digester-1.8.1.jar | |
[INFO] Resolved: commons-logging-1.2.jar | |
[INFO] Resolved: commons-collections-3.2.2.jar | |
[INFO] Resolved: handy-uri-templates-2.1.8.jar | |
[INFO] Resolved: joda-time-2.10.6.jar | |
[INFO] Resolved: re2j-1.3.jar | |
[INFO] Resolved: jaxb-api-2.3.1.jar | |
[INFO] Resolved: javax.activation-api-1.2.0.jar | |
[INFO] Resolved: guava-29.0-jre.jar | |
[INFO] Resolved: failureaccess-1.0.1.jar | |
[INFO] Resolved: listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar | |
[INFO] Resolved: jsr305-3.0.2.jar | |
[INFO] Resolved: checker-qual-2.11.1.jar | |
[INFO] Resolved: error_prone_annotations-2.3.4.jar | |
[INFO] Resolved: j2objc-annotations-1.3.jar | |
[INFO] Resolved: jackson-annotations-2.11.3.jar | |
[INFO] Resolved: json-20140107.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: jackson-databind-2.11.3.jar | |
[INFO] Resolved: jackson-core-2.11.3.jar | |
[INFO] Resolved: jackson-dataformat-xml-2.11.3.jar | |
[INFO] Resolved: jackson-module-jaxb-annotations-2.11.3.jar | |
[INFO] Resolved: stax2-api-4.2.1.jar | |
[INFO] Resolved: woodstox-core-6.2.1.jar | |
[INFO] Resolved: commons-io-2.6.jar | |
[INFO] Resolved: commons-collections4-4.1.jar | |
[INFO] Resolved: gson-2.8.6.jar | |
[INFO] Resolved: util-39cb1fd.jar | |
[INFO] Resolved: classgraph-4.8.98.jar | |
[INFO] Resolved: archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: kryo-shaded-4.0.2.jar | |
[INFO] Resolved: minlog-1.3.0.jar | |
[INFO] Resolved: jackson-datatype-jsr310-2.9.10.jar | |
[INFO] Resolved: java-semver-0.9.0.jar | |
[INFO] Resolved: jaxb-core-2.3.0.1.jar | |
[INFO] Resolved: activation-1.1.1.jar | |
[INFO] Resolved: commons-text-1.9.jar | |
[INFO] Resolved: reflections-0.9.12.jar | |
[INFO] Resolved: javassist-3.26.0-GA.jar | |
[INFO] Resolved: jaxb-impl-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-1.2.2.jar | |
[INFO] Resolved: threeten-extra-1.5.0.jar | |
[INFO] Resolved: archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: antlr4-runtime-4.9.1.jar | |
[INFO] Resolved: i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jakarta.json-1.1.6-module.jar | |
[INFO] Resolved: justify-2.1.0.jar | |
[INFO] Resolved: jakarta.json-api-1.1.6.jar | |
[INFO] Resolved: icu4j-65.1.jar | |
[INFO] Resolved: utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jooq-3.12.3.jar | |
[INFO] Resolved: reactive-streams-1.0.3.jar | |
[INFO] Resolved: jooq-codegen-maven-3.12.3.jar | |
[INFO] Resolved: jooq-codegen-3.12.3.jar | |
[INFO] Resolved: jooq-meta-3.12.3.jar | |
[INFO] Resolved: maven-plugin-api-3.6.0.jar | |
[INFO] Resolved: maven-model-3.6.0.jar | |
[INFO] Resolved: maven-artifact-3.6.0.jar | |
[INFO] Resolved: org.eclipse.sisu.plexus-0.3.3.jar | |
[INFO] Resolved: cdi-api-1.0.jar | |
[INFO] Resolved: jsr250-api-1.0.jar | |
[INFO] Resolved: plexus-utils-3.1.0.jar | |
[INFO] Resolved: plexus-classworlds-2.5.2.jar | |
[INFO] Resolved: maven-core-3.6.0.jar | |
[INFO] Resolved: maven-settings-3.6.0.jar | |
[INFO] Resolved: maven-settings-builder-3.6.0.jar | |
[INFO] Resolved: plexus-interpolation-1.25.jar | |
[INFO] Resolved: plexus-sec-dispatcher-1.4.jar | |
[INFO] Resolved: plexus-cipher-1.4.jar | |
[INFO] Resolved: maven-builder-support-3.6.0.jar | |
[INFO] Resolved: maven-repository-metadata-3.6.0.jar | |
[INFO] Resolved: maven-model-builder-3.6.0.jar | |
[INFO] Resolved: maven-resolver-provider-3.6.0.jar | |
[INFO] Resolved: maven-resolver-impl-1.3.1.jar | |
[INFO] Resolved: maven-resolver-api-1.3.1.jar | |
[INFO] Resolved: maven-resolver-spi-1.3.1.jar | |
[INFO] Resolved: maven-resolver-util-1.3.1.jar | |
[INFO] Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Resolved: org.eclipse.sisu.inject-0.3.3.jar | |
[INFO] Resolved: guice-4.2.1-no_aop.jar | |
[INFO] Resolved: aopalliance-1.0.jar | |
[INFO] Resolved: javax.inject-1.jar | |
[INFO] Resolved: plexus-component-annotations-1.7.1.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] ------------------< org.ehrbase.openehr:rest-openehr >------------------ | |
[INFO] Building rest-openehr 0.16.5 [5/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-web/2.3.5.RELEASE/spring-boot-starter-web-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.3.5.RELEASE/spring-boot-starter-web-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.3.5.RELEASE/spring-boot-starter-web-2.3.5.RELEASE.pom (3.0 kB at 120 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-json/2.3.5.RELEASE/spring-boot-starter-json-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.3.5.RELEASE/spring-boot-starter-json-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.3.5.RELEASE/spring-boot-starter-json-2.3.5.RELEASE.pom (3.1 kB at 112 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-web/5.2.10.RELEASE/spring-web-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.10.RELEASE/spring-web-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.10.RELEASE/spring-web-5.2.10.RELEASE.pom (1.9 kB at 75 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.3/jackson-datatype-jdk8-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.3/jackson-datatype-jdk8-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.3/jackson-datatype-jdk8-2.11.3.pom (2.2 kB at 79 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/module/jackson-modules-java8/2.11.3/jackson-modules-java8-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.11.3/jackson-modules-java8-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.11.3/jackson-modules-java8-2.11.3.pom (3.2 kB at 123 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.3/jackson-module-parameter-names-2.11.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.3/jackson-module-parameter-names-2.11.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.3/jackson-module-parameter-names-2.11.3.pom (4.0 kB at 154 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-tomcat/2.3.5.RELEASE/spring-boot-starter-tomcat-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.3.5.RELEASE/spring-boot-starter-tomcat-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.3.5.RELEASE/spring-boot-starter-tomcat-2.3.5.RELEASE.pom (3.1 kB at 125 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/tomcat/embed/tomcat-embed-core/9.0.39/tomcat-embed-core-9.0.39.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.39/tomcat-embed-core-9.0.39.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.39/tomcat-embed-core-9.0.39.pom (1.8 kB at 71 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom (14 kB at 525 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.39/tomcat-embed-websocket-9.0.39.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.39/tomcat-embed-websocket-9.0.39.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.39/tomcat-embed-websocket-9.0.39.pom (1.8 kB at 69 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-webmvc/5.2.10.RELEASE/spring-webmvc-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.10.RELEASE/spring-webmvc-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.10.RELEASE/spring-webmvc-5.2.10.RELEASE.pom (2.7 kB at 102 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-security/2.3.5.RELEASE/spring-boot-starter-security-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/2.3.5.RELEASE/spring-boot-starter-security-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/2.3.5.RELEASE/spring-boot-starter-security-2.3.5.RELEASE.pom (2.7 kB at 57 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-config/5.3.5.RELEASE/spring-security-config-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/5.3.5.RELEASE/spring-security-config-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/5.3.5.RELEASE/spring-security-config-5.3.5.RELEASE.pom (17 kB at 591 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-core/5.3.5.RELEASE/spring-security-core-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/5.3.5.RELEASE/spring-security-core-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/5.3.5.RELEASE/spring-security-core-5.3.5.RELEASE.pom (6.8 kB at 262 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-web/5.3.5.RELEASE/spring-security-web-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/5.3.5.RELEASE/spring-security-web-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/5.3.5.RELEASE/spring-security-web-5.3.5.RELEASE.pom (7.8 kB at 290 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.pom (5.6 kB at 216 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.pom (1.9 kB at 71 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.pom (4.3 kB at 159 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava/20.0/guava-20.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom (6.8 kB at 263 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom (9.9 kB at 366 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/classmate/1.5.1/classmate-1.5.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.pom (7.3 kB at 279 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/oss-parent/35/oss-parent-35.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 kB at 787 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.pom (1.4 kB at 47 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/plugin/spring-plugin/1.2.0.RELEASE/spring-plugin-1.2.0.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin/1.2.0.RELEASE/spring-plugin-1.2.0.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin/1.2.0.RELEASE/spring-plugin-1.2.0.RELEASE.pom (5.7 kB at 185 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.pom (803 B at 31 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.pom (2.0 kB at 78 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.pom (5.1 kB at 174 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.pom (4.5 kB at 173 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.pom (6.6 kB at 255 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/mapstruct/mapstruct-parent/1.2.0.Final/mapstruct-parent-1.2.0.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mapstruct/mapstruct-parent/1.2.0.Final/mapstruct-parent-1.2.0.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mapstruct/mapstruct-parent/1.2.0.Final/mapstruct-parent-1.2.0.Final.pom (32 kB at 1.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/arquillian/arquillian-bom/1.0.2.Final/arquillian-bom-1.0.2.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.0.2.Final/arquillian-bom-1.0.2.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.0.2.Final/arquillian-bom-1.0.2.Final.pom (11 kB at 393 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/shrinkwrap/shrinkwrap-bom/1.0.1/shrinkwrap-bom-1.0.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.0.1/shrinkwrap-bom-1.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.0.1/shrinkwrap-bom-1.0.1.pom (3.2 kB at 122 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/1.0.0-beta-7/shrinkwrap-resolver-bom-1.0.0-beta-7.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/1.0.0-beta-7/shrinkwrap-resolver-bom-1.0.0-beta-7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/1.0.0-beta-7/shrinkwrap-resolver-bom-1.0.0-beta-7.pom (3.3 kB at 131 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-3/shrinkwrap-descriptors-bom-2.0.0-alpha-3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-3/shrinkwrap-descriptors-bom-2.0.0-alpha-3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-3/shrinkwrap-descriptors-bom-2.0.0-alpha-3.pom (4.4 kB at 167 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/swagger/swagger-models/1.6.2/swagger-models-1.6.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.6.2/swagger-models-1.6.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.6.2/swagger-models-1.6.2.pom (4.6 kB at 169 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/boot/ipf-atna-spring-boot-starter/4.0.0/ipf-atna-spring-boot-starter-4.0.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/boot/ipf-atna-spring-boot-starter/4.0.0/ipf-atna-spring-boot-starter-4.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/boot/ipf-atna-spring-boot-starter/4.0.0/ipf-atna-spring-boot-starter-4.0.0.pom (2.7 kB at 8.7 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/boot/ipf-spring-boot/4.0.0/ipf-spring-boot-4.0.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/boot/ipf-spring-boot/4.0.0/ipf-spring-boot-4.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/boot/ipf-spring-boot/4.0.0/ipf-spring-boot-4.0.0.pom (1.1 kB at 3.4 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/ipf/4.0.0/ipf-4.0.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/ipf/4.0.0/ipf-4.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/ipf/4.0.0/ipf-4.0.0.pom (46 kB at 138 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/ipf-dependencies/4.0.0/ipf-dependencies-4.0.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/ipf-dependencies/4.0.0/ipf-dependencies-4.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/ipf-dependencies/4.0.0/ipf-dependencies-4.0.0.pom (49 kB at 151 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-dependencies/2.4.1/spring-boot-dependencies-2.4.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.4.1/spring-boot-dependencies-2.4.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.4.1/spring-boot-dependencies-2.4.1.pom (108 kB at 3.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/datastax/oss/java-driver-bom/4.9.0/java-driver-bom-4.9.0.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/com/datastax/oss/java-driver-bom/4.9.0/java-driver-bom-4.9.0.pom | |
Downloading from jcenter: https://jcenter.bintray.com/com/datastax/oss/java-driver-bom/4.9.0/java-driver-bom-4.9.0.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/com/datastax/oss/java-driver-bom/4.9.0/java-driver-bom-4.9.0.pom (4.1 kB at 49 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/dropwizard/metrics/metrics-bom/4.1.16/metrics-bom-4.1.16.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/io/dropwizard/metrics/metrics-bom/4.1.16/metrics-bom-4.1.16.pom | |
Downloading from jcenter: https://jcenter.bintray.com/io/dropwizard/metrics/metrics-bom/4.1.16/metrics-bom-4.1.16.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/io/dropwizard/metrics/metrics-bom/4.1.16/metrics-bom-4.1.16.pom (5.3 kB at 197 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/dropwizard/metrics/metrics-parent/4.1.16/metrics-parent-4.1.16.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/io/dropwizard/metrics/metrics-parent/4.1.16/metrics-parent-4.1.16.pom | |
Downloading from jcenter: https://jcenter.bintray.com/io/dropwizard/metrics/metrics-parent/4.1.16/metrics-parent-4.1.16.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/io/dropwizard/metrics/metrics-parent/4.1.16/metrics-parent-4.1.16.pom (16 kB at 505 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/codehaus/groovy/groovy-bom/2.5.14/groovy-bom-2.5.14.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/codehaus/groovy/groovy-bom/2.5.14/groovy-bom-2.5.14.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/codehaus/groovy/groovy-bom/2.5.14/groovy-bom-2.5.14.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/codehaus/groovy/groovy-bom/2.5.14/groovy-bom-2.5.14.pom (26 kB at 752 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/infinispan/infinispan-bom/11.0.8.Final/infinispan-bom-11.0.8.Final.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/infinispan/infinispan-bom/11.0.8.Final/infinispan-bom-11.0.8.Final.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/infinispan/infinispan-bom/11.0.8.Final/infinispan-bom-11.0.8.Final.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/infinispan/infinispan-bom/11.0.8.Final/infinispan-bom-11.0.8.Final.pom (19 kB at 627 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/infinispan/infinispan-build-configuration-parent/11.0.8.Final/infinispan-build-configuration-parent-11.0.8.Final.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/infinispan/infinispan-build-configuration-parent/11.0.8.Final/infinispan-build-configuration-parent-11.0.8.Final.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/infinispan/infinispan-build-configuration-parent/11.0.8.Final/infinispan-build-configuration-parent-11.0.8.Final.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/infinispan/infinispan-build-configuration-parent/11.0.8.Final/infinispan-build-configuration-parent-11.0.8.Final.pom (13 kB at 403 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/jboss-parent/36/jboss-parent-36.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/jboss/jboss-parent/36/jboss-parent-36.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/jboss/jboss-parent/36/jboss-parent-36.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 1.6 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jersey/jersey-bom/2.32/jersey-bom-2.32.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/glassfish/jersey/jersey-bom/2.32/jersey-bom-2.32.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/glassfish/jersey/jersey-bom/2.32/jersey-bom-2.32.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/glassfish/jersey/jersey-bom/2.32/jersey-bom-2.32.pom (19 kB at 682 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/eclipse/jetty/jetty-bom/9.4.35.v20201120/jetty-bom-9.4.35.v20201120.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/eclipse/jetty/jetty-bom/9.4.35.v20201120/jetty-bom-9.4.35.v20201120.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/eclipse/jetty/jetty-bom/9.4.35.v20201120/jetty-bom-9.4.35.v20201120.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/eclipse/jetty/jetty-bom/9.4.35.v20201120/jetty-bom-9.4.35.v20201120.pom (18 kB at 654 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/junit-bom/5.7.0/junit-bom-5.7.0.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/junit/junit-bom/5.7.0/junit-bom-5.7.0.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/junit/junit-bom/5.7.0/junit-bom-5.7.0.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/junit/junit-bom/5.7.0/junit-bom-5.7.0.pom (5.1 kB at 204 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jetbrains/kotlin/kotlin-bom/1.4.21/kotlin-bom-1.4.21.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/jetbrains/kotlin/kotlin-bom/1.4.21/kotlin-bom-1.4.21.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-bom/1.4.21/kotlin-bom-1.4.21.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-bom/1.4.21/kotlin-bom-1.4.21.pom (9.3 kB at 359 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.4.2/kotlinx-coroutines-bom-1.4.2.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.4.2/kotlinx-coroutines-bom-1.4.2.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.4.2/kotlinx-coroutines-bom-1.4.2.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.4.2/kotlinx-coroutines-bom-1.4.2.pom (4.1 kB at 158 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/micrometer/micrometer-bom/1.6.2/micrometer-bom-1.6.2.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/io/micrometer/micrometer-bom/1.6.2/micrometer-bom-1.6.2.pom | |
Downloading from jcenter: https://jcenter.bintray.com/io/micrometer/micrometer-bom/1.6.2/micrometer-bom-1.6.2.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/io/micrometer/micrometer-bom/1.6.2/micrometer-bom-1.6.2.pom (6.8 kB at 261 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/netty/netty-bom/4.1.55.Final/netty-bom-4.1.55.Final.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/io/netty/netty-bom/4.1.55.Final/netty-bom-4.1.55.Final.pom | |
Downloading from jcenter: https://jcenter.bintray.com/io/netty/netty-bom/4.1.55.Final/netty-bom-4.1.55.Final.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/io/netty/netty-bom/4.1.55.Final/netty-bom-4.1.55.Final.pom (8.8 kB at 325 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/oracle/database/jdbc/ojdbc-bom/19.8.0.0/ojdbc-bom-19.8.0.0.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/com/oracle/database/jdbc/ojdbc-bom/19.8.0.0/ojdbc-bom-19.8.0.0.pom | |
Downloading from jcenter: https://jcenter.bintray.com/com/oracle/database/jdbc/ojdbc-bom/19.8.0.0/ojdbc-bom-19.8.0.0.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/com/oracle/database/jdbc/ojdbc-bom/19.8.0.0/ojdbc-bom-19.8.0.0.pom (12 kB at 459 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/projectreactor/reactor-bom/2020.0.2/reactor-bom-2020.0.2.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/io/projectreactor/reactor-bom/2020.0.2/reactor-bom-2020.0.2.pom | |
Downloading from jcenter: https://jcenter.bintray.com/io/projectreactor/reactor-bom/2020.0.2/reactor-bom-2020.0.2.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/io/projectreactor/reactor-bom/2020.0.2/reactor-bom-2020.0.2.pom (4.5 kB at 173 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/rsocket/rsocket-bom/1.1.0/rsocket-bom-1.1.0.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/io/rsocket/rsocket-bom/1.1.0/rsocket-bom-1.1.0.pom | |
Downloading from jcenter: https://jcenter.bintray.com/io/rsocket/rsocket-bom/1.1.0/rsocket-bom-1.1.0.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/io/rsocket/rsocket-bom/1.1.0/rsocket-bom-1.1.0.pom (2.6 kB at 101 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/spring-data-bom/2020.0.2/spring-data-bom-2020.0.2.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/springframework/data/spring-data-bom/2020.0.2/spring-data-bom-2020.0.2.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/springframework/data/spring-data-bom/2020.0.2/spring-data-bom-2020.0.2.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/springframework/data/spring-data-bom/2020.0.2/spring-data-bom-2020.0.2.pom (5.9 kB at 225 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-framework-bom/5.3.2/spring-framework-bom-5.3.2.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/springframework/spring-framework-bom/5.3.2/spring-framework-bom-5.3.2.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/springframework/spring-framework-bom/5.3.2/spring-framework-bom-5.3.2.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/springframework/spring-framework-bom/5.3.2/spring-framework-bom-5.3.2.pom (5.6 kB at 217 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/integration/spring-integration-bom/5.4.2/spring-integration-bom-5.4.2.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/springframework/integration/spring-integration-bom/5.4.2/spring-integration-bom-5.4.2.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/springframework/integration/spring-integration-bom/5.4.2/spring-integration-bom-5.4.2.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/springframework/integration/spring-integration-bom/5.4.2/spring-integration-bom-5.4.2.pom (9.5 kB at 352 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-bom/5.4.2/spring-security-bom-5.4.2.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/springframework/security/spring-security-bom/5.4.2/spring-security-bom-5.4.2.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/springframework/security/spring-security-bom/5.4.2/spring-security-bom-5.4.2.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/springframework/security/spring-security-bom/5.4.2/spring-security-bom-5.4.2.pom (5.3 kB at 202 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/session/spring-session-bom/2020.0.1/spring-session-bom-2020.0.1.pom | |
Downloading from spring-milestones: https://repo.spring.io/milestone/org/springframework/session/spring-session-bom/2020.0.1/spring-session-bom-2020.0.1.pom | |
Downloading from jcenter: https://jcenter.bintray.com/org/springframework/session/spring-session-bom/2020.0.1/spring-session-bom-2020.0.1.pom | |
Downloaded from jcenter: https://jcenter.bintray.com/org/springframework/session/spring-session-bom/2020.0.1/spring-session-bom-2020.0.1.pom (2.7 kB at 88 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/ca/uhn/hapi/fhir/hapi-fhir-bom/5.2.0/hapi-fhir-bom-5.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/ca/uhn/hapi/fhir/hapi-fhir-bom/5.2.0/hapi-fhir-bom-5.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/ca/uhn/hapi/fhir/hapi-fhir-bom/5.2.0/hapi-fhir-bom-5.2.0.pom (7.0 kB at 25 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/ca/uhn/hapi/fhir/hapi-deployable-pom/5.2.0/hapi-deployable-pom-5.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/ca/uhn/hapi/fhir/hapi-deployable-pom/5.2.0/hapi-deployable-pom-5.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/ca/uhn/hapi/fhir/hapi-deployable-pom/5.2.0/hapi-deployable-pom-5.2.0.pom (8.9 kB at 69 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/ca/uhn/hapi/fhir/hapi-fhir/5.2.0/hapi-fhir-5.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/ca/uhn/hapi/fhir/hapi-fhir/5.2.0/hapi-fhir-5.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/ca/uhn/hapi/fhir/hapi-fhir/5.2.0/hapi-fhir-5.2.0.pom (81 kB at 656 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jaxb/jaxb-runtime/2.3.3/jaxb-runtime-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/2.3.3/jaxb-runtime-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/2.3.3/jaxb-runtime-2.3.3.pom (8.5 kB at 282 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/mvn/jaxb-runtime-parent/2.3.3/jaxb-runtime-parent-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/2.3.3/jaxb-runtime-parent-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-runtime-parent/2.3.3/jaxb-runtime-parent-2.3.3.pom (1.1 kB at 34 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jaxb/txw2/2.3.3/txw2-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/2.3.3/txw2-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/2.3.3/txw2-2.3.3.pom (1.7 kB at 53 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/xml/bind/mvn/jaxb-txw-parent/2.3.3/jaxb-txw-parent-2.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/2.3.3/jaxb-txw-parent-2.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/xml/bind/mvn/jaxb-txw-parent/2.3.3/jaxb-txw-parent-2.3.3.pom (1.7 kB at 53 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/istack/istack-commons-runtime/3.0.11/istack-commons-runtime-3.0.11.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/3.0.11/istack-commons-runtime-3.0.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/3.0.11/istack-commons-runtime-3.0.11.pom (5.1 kB at 164 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/istack/istack-commons/3.0.11/istack-commons-3.0.11.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/3.0.11/istack-commons-3.0.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons/3.0.11/istack-commons-3.0.11.pom (22 kB at 674 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.pom (11 kB at 378 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/commons/ipf-commons-audit/4.0.0/ipf-commons-audit-4.0.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/commons/ipf-commons-audit/4.0.0/ipf-commons-audit-4.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/commons/ipf-commons-audit/4.0.0/ipf-commons-audit-4.0.0.pom (3.7 kB at 10 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/commons/ipf-commons/4.0.0/ipf-commons-4.0.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/commons/ipf-commons/4.0.0/ipf-commons-4.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/commons/ipf-commons/4.0.0/ipf-commons-4.0.0.pom (1.9 kB at 5.5 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom (4.6 kB at 153 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.pom (1.2 kB at 37 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-web/2.3.5.RELEASE/spring-boot-starter-web-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-json/2.3.5.RELEASE/spring-boot-starter-json-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.3/jackson-datatype-jdk8-2.11.3.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.3/jackson-module-parameter-names-2.11.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-tomcat/2.3.5.RELEASE/spring-boot-starter-tomcat-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/tomcat/embed/tomcat-embed-core/9.0.39/tomcat-embed-core-9.0.39.jar | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.39/tomcat-embed-websocket-9.0.39.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-web/5.2.10.RELEASE/spring-web-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-webmvc/5.2.10.RELEASE/spring-webmvc-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-security/2.3.5.RELEASE/spring-boot-starter-security-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-config/5.3.5.RELEASE/spring-security-config-5.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-core/5.3.5.RELEASE/spring-security-core-5.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-web/5.3.5.RELEASE/spring-security-web-5.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava/20.0/guava-20.0.jar | |
Downloading from jitpack.io: https://jitpack.io/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar | |
Downloading from jitpack.io: https://jitpack.io/io/swagger/swagger-models/1.6.2/swagger-models-1.6.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/boot/ipf-atna-spring-boot-starter/4.0.0/ipf-atna-spring-boot-starter-4.0.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jaxb/jaxb-runtime/2.3.3/jaxb-runtime-2.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/glassfish/jaxb/txw2/2.3.3/txw2-2.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/com/sun/istack/istack-commons-runtime/3.0.11/istack-commons-runtime-3.0.11.jar | |
Downloading from jitpack.io: https://jitpack.io/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar | |
Downloading from jitpack.io: https://jitpack.io/org/openehealth/ipf/commons/ipf-commons-audit/4.0.0/ipf-commons-audit-4.0.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar | |
Downloading from jitpack.io: https://jitpack.io/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.3.5.RELEASE/spring-boot-starter-web-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.3.5.RELEASE/spring-boot-starter-json-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.3/jackson-datatype-jdk8-2.11.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.3.5.RELEASE/spring-boot-starter-tomcat-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.3/jackson-module-parameter-names-2.11.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.3.5.RELEASE/spring-boot-starter-web-2.3.5.RELEASE.jar (4.8 kB at 145 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.39/tomcat-embed-core-9.0.39.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.3/jackson-datatype-jdk8-2.11.3.jar (34 kB at 904 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.3.5.RELEASE/spring-boot-starter-json-2.3.5.RELEASE.jar (4.7 kB at 122 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.39/tomcat-embed-websocket-9.0.39.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.3.5.RELEASE/spring-boot-starter-tomcat-2.3.5.RELEASE.jar (4.8 kB at 126 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.3/jackson-module-parameter-names-2.11.3.jar (9.3 kB at 244 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.10.RELEASE/spring-web-5.2.10.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.10.RELEASE/spring-webmvc-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar (238 kB at 1.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/2.3.5.RELEASE/spring-boot-starter-security-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.39/tomcat-embed-websocket-9.0.39.jar (271 kB at 1.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/5.3.5.RELEASE/spring-security-config-5.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-security/2.3.5.RELEASE/spring-boot-starter-security-2.3.5.RELEASE.jar (4.7 kB at 20 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/5.3.5.RELEASE/spring-security-core-5.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.10.RELEASE/spring-webmvc-5.2.10.RELEASE.jar (957 kB at 3.6 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/5.3.5.RELEASE/spring-security-web-5.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-core/5.3.5.RELEASE/spring-security-core-5.3.5.RELEASE.jar (444 kB at 1.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-web/5.3.5.RELEASE/spring-security-web-5.3.5.RELEASE.jar (568 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.10.RELEASE/spring-web-5.2.10.RELEASE.jar (1.4 MB at 3.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar (68 kB at 135 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-config/5.3.5.RELEASE/spring-security-config-5.3.5.RELEASE.jar (1.1 MB at 2.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar (54 kB at 103 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar (117 kB at 220 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.39/tomcat-embed-core-9.0.39.jar (3.4 MB at 6.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar (84 kB at 152 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar (107 kB at 187 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar (195 kB at 338 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar (68 kB at 116 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.6.2/swagger-models-1.6.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar (20 kB at 34 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/boot/ipf-atna-spring-boot-starter/4.0.0/ipf-atna-spring-boot-starter-4.0.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar (5.1 kB at 8.5 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/2.3.3/jaxb-runtime-2.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar (21 kB at 33 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/2.3.3/txw2-2.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.6.2/swagger-models-1.6.2.jar (155 kB at 242 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/3.0.11/istack-commons-runtime-3.0.11.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/txw2/2.3.3/txw2-2.3.3.jar (72 kB at 107 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/istack/istack-commons-runtime/3.0.11/istack-commons-runtime-3.0.11.jar (30 kB at 43 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/commons/ipf-commons-audit/4.0.0/ipf-commons-audit-4.0.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.2/jakarta.validation-api-2.0.2.jar (92 kB at 124 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/jaxb/jaxb-runtime/2.3.3/jaxb-runtime-2.3.3.jar (1.0 MB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.jar (2.4 MB at 3.1 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar (305 kB at 377 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.30/jcl-over-slf4j-1.7.30.jar (17 kB at 20 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/boot/ipf-atna-spring-boot-starter/4.0.0/ipf-atna-spring-boot-starter-4.0.0.jar (13 kB at 14 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/openehealth/ipf/commons/ipf-commons-audit/4.0.0/ipf-commons-audit-4.0.0.jar (210 kB at 185 kB/s) | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-openehr --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/rest-openehr/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ rest-openehr --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 7 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ rest-openehr --- | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ rest-openehr >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ rest-openehr --- | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ rest-openehr <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ rest-openehr --- | |
[INFO] Resolved: spring-boot-starter-web-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-starter-json-2.3.5.RELEASE.jar | |
[INFO] Resolved: jackson-datatype-jdk8-2.11.3.jar | |
[INFO] Resolved: jackson-module-parameter-names-2.11.3.jar | |
[INFO] Resolved: spring-boot-starter-tomcat-2.3.5.RELEASE.jar | |
[INFO] Resolved: tomcat-embed-core-9.0.39.jar | |
[INFO] Resolved: jakarta.el-3.0.3.jar | |
[INFO] Resolved: tomcat-embed-websocket-9.0.39.jar | |
[INFO] Resolved: spring-web-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-webmvc-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-security-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-security-config-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-core-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-web-5.3.5.RELEASE.jar | |
[INFO] Resolved: api-0.16.5.jar | |
[INFO] Resolved: serialisation-39cb1fd.jar | |
[INFO] Resolved: building-39cb1fd.jar | |
[INFO] Resolved: org.everit.json.schema-1.12.1.jar | |
[INFO] Resolved: commons-validator-1.6.jar | |
[INFO] Resolved: commons-digester-1.8.1.jar | |
[INFO] Resolved: commons-logging-1.2.jar | |
[INFO] Resolved: commons-collections-3.2.2.jar | |
[INFO] Resolved: handy-uri-templates-2.1.8.jar | |
[INFO] Resolved: joda-time-2.10.6.jar | |
[INFO] Resolved: re2j-1.3.jar | |
[INFO] Resolved: jaxb-api-2.3.1.jar | |
[INFO] Resolved: javax.activation-api-1.2.0.jar | |
[INFO] Resolved: json-20140107.jar | |
[INFO] Resolved: commons-io-2.6.jar | |
[INFO] Resolved: commons-collections4-4.1.jar | |
[INFO] Resolved: gson-2.8.6.jar | |
[INFO] Resolved: util-39cb1fd.jar | |
[INFO] Resolved: classgraph-4.8.98.jar | |
[INFO] Resolved: response-dto-39cb1fd.jar | |
[INFO] Resolved: jackson-datatype-jsr310-2.9.10.jar | |
[INFO] Resolved: archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: kryo-shaded-4.0.2.jar | |
[INFO] Resolved: minlog-1.3.0.jar | |
[INFO] Resolved: java-semver-0.9.0.jar | |
[INFO] Resolved: jaxb-core-2.3.0.1.jar | |
[INFO] Resolved: activation-1.1.1.jar | |
[INFO] Resolved: commons-text-1.9.jar | |
[INFO] Resolved: reflections-0.9.12.jar | |
[INFO] Resolved: javassist-3.26.0-GA.jar | |
[INFO] Resolved: jaxb-impl-2.3.3.jar | |
[INFO] Resolved: threeten-extra-1.5.0.jar | |
[INFO] Resolved: archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: antlr4-runtime-4.9.1.jar | |
[INFO] Resolved: i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jakarta.json-1.1.6-module.jar | |
[INFO] Resolved: justify-2.1.0.jar | |
[INFO] Resolved: jakarta.json-api-1.1.6.jar | |
[INFO] Resolved: icu4j-65.1.jar | |
[INFO] Resolved: utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jackson-annotations-2.11.3.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: web-template-39cb1fd.jar | |
[INFO] Resolved: opt-1.4-39cb1fd.jar | |
[INFO] Resolved: xmlbeans-3.1.0.jar | |
[INFO] Resolved: terminology-39cb1fd.jar | |
[INFO] Resolved: commons-lang3-3.11.jar | |
[INFO] Resolved: cache-api-1.1.1.jar | |
[INFO] Resolved: springfox-swagger2-2.9.2.jar | |
[INFO] Resolved: springfox-spi-2.9.2.jar | |
[INFO] Resolved: springfox-core-2.9.2.jar | |
[INFO] Resolved: springfox-schema-2.9.2.jar | |
[INFO] Resolved: springfox-swagger-common-2.9.2.jar | |
[INFO] Resolved: springfox-spring-web-2.9.2.jar | |
[INFO] Resolved: guava-20.0.jar | |
[INFO] Resolved: classmate-1.5.1.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: spring-plugin-core-1.2.0.RELEASE.jar | |
[INFO] Resolved: spring-plugin-metadata-1.2.0.RELEASE.jar | |
[INFO] Resolved: mapstruct-1.2.0.Final.jar | |
[INFO] Resolved: swagger-annotations-1.6.2.jar | |
[INFO] Resolved: swagger-models-1.6.2.jar | |
[INFO] Resolved: jackson-dataformat-xml-2.11.3.jar | |
[INFO] Resolved: jackson-core-2.11.3.jar | |
[INFO] Resolved: jackson-databind-2.11.3.jar | |
[INFO] Resolved: jackson-module-jaxb-annotations-2.11.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: stax2-api-4.2.1.jar | |
[INFO] Resolved: woodstox-core-6.2.1.jar | |
[INFO] Resolved: ipf-atna-spring-boot-starter-4.0.0.jar | |
[INFO] Resolved: jaxb-runtime-2.3.3.jar | |
[INFO] Resolved: txw2-2.3.3.jar | |
[INFO] Resolved: istack-commons-runtime-3.0.11.jar | |
[INFO] Resolved: jakarta.activation-1.2.2.jar | |
[INFO] Resolved: jakarta.validation-api-2.0.2.jar | |
[INFO] Resolved: ipf-commons-audit-4.0.0.jar | |
[INFO] Resolved: jdom2-2.0.6.jar | |
[INFO] Resolved: jcl-over-slf4j-1.7.30.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] --------------------< org.ehrbase.openehr:service >--------------------- | |
[INFO] Building service 0.16.5 [6/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.9.1/antlr4-maven-plugin-4.9.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.9.1/antlr4-maven-plugin-4.9.1.pom (5.9 kB at 47 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.9.1/antlr4-maven-plugin-4.9.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.9.1/antlr4-maven-plugin-4.9.1.jar (31 kB at 142 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-configuration-processor/2.3.5.RELEASE/spring-boot-configuration-processor-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-configuration-processor/2.3.5.RELEASE/spring-boot-configuration-processor-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-configuration-processor/2.3.5.RELEASE/spring-boot-configuration-processor-2.3.5.RELEASE.pom (1.9 kB at 58 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-jdbc/5.2.10.RELEASE/spring-jdbc-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.10.RELEASE/spring-jdbc-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.10.RELEASE/spring-jdbc-5.2.10.RELEASE.pom (2.1 kB at 62 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-tx/5.2.10.RELEASE/spring-tx-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.10.RELEASE/spring-tx-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.10.RELEASE/spring-tx-5.2.10.RELEASE.pom (1.9 kB at 59 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/validation/39cb1fd/validation-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/validation/39cb1fd/validation-39cb1fd.pom (1.5 kB at 12 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/fluent-hc/4.5.13/fluent-hc-4.5.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/fluent-hc/4.5.13/fluent-hc-4.5.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/fluent-hc/4.5.13/fluent-hc-4.5.13.pom (5.3 kB at 117 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 496 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 1.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 207 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 86 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 425 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/commons-codec/commons-codec/1.14/commons-codec-1.14.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14.pom (15 kB at 449 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/commons/commons-parent/50/commons-parent-50.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/50/commons-parent-50.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/50/commons-parent-50.pom (76 kB at 2.1 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j-core/2.13.3/log4j-core-2.13.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.13.3/log4j-core-2.13.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.13.3/log4j-core-2.13.3.pom (23 kB at 680 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/ehcache/ehcache/3.8.1/ehcache-3.8.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.8.1/ehcache-3.8.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.8.1/ehcache-3.8.1.pom (2.1 kB at 46 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/test-data/39cb1fd/test-data-39cb1fd.pom | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/test-data/39cb1fd/test-data-39cb1fd.pom (556 B at 7.0 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-configuration-processor/2.3.5.RELEASE/spring-boot-configuration-processor-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-jdbc/5.2.10.RELEASE/spring-jdbc-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/validation/39cb1fd/validation-39cb1fd.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/fluent-hc/4.5.13/fluent-hc-4.5.13.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-tx/5.2.10.RELEASE/spring-tx-5.2.10.RELEASE.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/validation/39cb1fd/validation-39cb1fd.jar (120 kB at 730 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar | |
Downloading from jitpack.io: https://jitpack.io/commons-codec/commons-codec/1.14/commons-codec-1.14.jar | |
Downloading from jitpack.io: https://jitpack.io/org/apache/logging/log4j/log4j-core/2.13.3/log4j-core-2.13.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/ehcache/ehcache/3.8.1/ehcache-3.8.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/test-data/39cb1fd/test-data-39cb1fd.jar | |
Downloaded from jitpack.io: https://jitpack.io/com/github/ehrbase/openEHR_SDK/test-data/39cb1fd/test-data-39cb1fd.jar (920 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-configuration-processor/2.3.5.RELEASE/spring-boot-configuration-processor-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/fluent-hc/4.5.13/fluent-hc-4.5.13.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.10.RELEASE/spring-tx-5.2.10.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.10.RELEASE/spring-jdbc-5.2.10.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/fluent-hc/4.5.13/fluent-hc-4.5.13.jar (32 kB at 415 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.10.RELEASE/spring-tx-5.2.10.RELEASE.jar (315 kB at 3.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-configuration-processor/2.3.5.RELEASE/spring-boot-configuration-processor-2.3.5.RELEASE.jar (116 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.13.3/log4j-core-2.13.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.10.RELEASE/spring-jdbc-5.2.10.RELEASE.jar (409 kB at 3.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.8.1/ehcache-3.8.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 5.2 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar (329 kB at 2.2 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.14/commons-codec-1.14.jar (348 kB at 1.2 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-core/2.13.3/log4j-core-2.13.3.jar (1.7 MB at 5.2 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ehcache/ehcache/3.8.1/ehcache-3.8.1.jar (1.8 MB at 4.9 MB/s) | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ service --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/service/target/jacoco.exec | |
[INFO] | |
[INFO] --- antlr4-maven-plugin:4.9.1:antlr4 (antlr) @ service --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0.5/maven-plugin-api-3.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0.5/maven-plugin-api-3.0.5.pom (2.7 kB at 83 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0.5/maven-3.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0.5/maven-3.0.5.pom (22 kB at 679 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0.5/maven-model-3.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0.5/maven-model-3.0.5.pom (3.8 kB at 112 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.6/plexus-utils-2.0.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.6/plexus-utils-2.0.6.pom (2.9 kB at 90 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0.5/maven-artifact-3.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0.5/maven-artifact-3.0.5.pom (1.6 kB at 51 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/2.3.0/sisu-inject-plexus-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/2.3.0/sisu-inject-plexus-2.3.0.pom (6.1 kB at 176 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/2.3.0/guice-plexus-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/2.3.0/guice-plexus-2.3.0.pom (3.8 kB at 123 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/2.3.0/guice-bean-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/2.3.0/guice-bean-2.3.0.pom (3.0 kB at 98 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/containers/2.3.0/containers-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/containers/2.3.0/containers-2.3.0.pom (1.2 kB at 37 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/2.3.0/sisu-inject-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/2.3.0/sisu-inject-2.3.0.pom (3.2 kB at 104 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/2.3.0/sisu-parent-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/2.3.0/sisu-parent-2.3.0.pom (11 kB at 312 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom (3.9 kB at 129 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/2.3.0/sisu-inject-bean-2.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/2.3.0/sisu-inject-bean-2.3.0.pom (7.1 kB at 222 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom (10 kB at 308 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom (11 kB at 331 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guava/0.9.9/sisu-guava-0.9.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guava/0.9.9/sisu-guava-0.9.9.pom (1.1 kB at 35 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guava-parent/0.9.9/guava-parent-0.9.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guava-parent/0.9.9/guava-parent-0.9.9.pom (11 kB at 355 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom (865 B at 28 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom (3.6 kB at 120 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.9.1/antlr4-4.9.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.9.1/antlr4-4.9.1.pom (6.2 kB at 182 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2.pom (2.2 kB at 72 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.2/antlr-master-3.5.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.2/antlr-master-3.5.2.pom (12 kB at 384 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3/ST4-4.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3/ST4-4.3.pom (4.7 kB at 127 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.pom (5.2 kB at 173 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.pom (9.2 kB at 264 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0.4/json-1.0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/json/1.0.4/json-1.0.4.pom (11 kB at 357 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/61.1/icu4j-61.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/61.1/icu4j-61.1.pom (5.0 kB at 160 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0.5/maven-plugin-api-3.0.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0.5/maven-model-3.0.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0.5/maven-artifact-3.0.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/2.3.0/sisu-inject-plexus-2.3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0.5/maven-plugin-api-3.0.5.jar (49 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/2.3.0/sisu-inject-bean-2.3.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0.5/maven-artifact-3.0.5.jar (52 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.jar (47 kB at 923 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guava/0.9.9/sisu-guava-0.9.9.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0.5/maven-model-3.0.5.jar (164 kB at 3.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/2.3.0/sisu-inject-plexus-2.3.0.jar (204 kB at 3.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar (25 kB at 231 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.9.1/antlr4-4.9.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/2.3.0/sisu-inject-bean-2.3.0.jar (289 kB at 2.6 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar (357 kB at 3.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3/ST4-4.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.jar (232 kB at 1.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.2/antlr-runtime-3.5.2.jar (168 kB at 902 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3/ST4-4.3.jar (251 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar (27 kB at 134 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar (85 kB at 342 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar (35 kB at 123 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.9.1/antlr4-4.9.1.jar (1.2 MB at 4.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar (26 kB at 84 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar (30 kB at 81 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar (51 kB at 135 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar (332 kB at 842 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guava/0.9.9/sisu-guava-0.9.9.jar (1.5 MB at 3.0 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/61.1/icu4j-61.1.jar (12 MB at 12 MB/s) | |
[INFO] ANTLR 4: Processing source directory /service/src/main/antlr4 | |
[INFO] Processing grammar: org/ehrbase/aql/parser/Aql.g4 | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ service --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 3 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ service --- | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ service >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ service --- | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: antlr4-maven-plugin-4.9.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.2.jar | |
[INFO] Plugin Dependency Resolved: plexus-build-api-0.0.7.jar | |
[INFO] Plugin Dependency Resolved: antlr4-4.9.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ service <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ service --- | |
[INFO] Resolved: spring-boot-configuration-processor-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-jdbc-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-tx-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-security-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-security-config-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-core-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-security-web-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-web-5.2.10.RELEASE.jar | |
[INFO] Resolved: api-0.16.5.jar | |
[INFO] Resolved: response-dto-39cb1fd.jar | |
[INFO] Resolved: jackson-dataformat-xml-2.11.3.jar | |
[INFO] Resolved: jackson-core-2.11.3.jar | |
[INFO] Resolved: jackson-module-jaxb-annotations-2.11.3.jar | |
[INFO] Resolved: stax2-api-4.2.1.jar | |
[INFO] Resolved: woodstox-core-6.2.1.jar | |
[INFO] Resolved: jackson-datatype-jsr310-2.9.10.jar | |
[INFO] Resolved: jackson-annotations-2.11.3.jar | |
[INFO] Resolved: swagger-annotations-1.6.2.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: serialisation-39cb1fd.jar | |
[INFO] Resolved: building-39cb1fd.jar | |
[INFO] Resolved: org.everit.json.schema-1.12.1.jar | |
[INFO] Resolved: commons-validator-1.6.jar | |
[INFO] Resolved: commons-digester-1.8.1.jar | |
[INFO] Resolved: commons-collections-3.2.2.jar | |
[INFO] Resolved: handy-uri-templates-2.1.8.jar | |
[INFO] Resolved: re2j-1.3.jar | |
[INFO] Resolved: jaxb-api-2.3.1.jar | |
[INFO] Resolved: javax.activation-api-1.2.0.jar | |
[INFO] Resolved: guava-29.0-jre.jar | |
[INFO] Resolved: failureaccess-1.0.1.jar | |
[INFO] Resolved: listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar | |
[INFO] Resolved: jsr305-3.0.2.jar | |
[INFO] Resolved: error_prone_annotations-2.3.4.jar | |
[INFO] Resolved: j2objc-annotations-1.3.jar | |
[INFO] Resolved: json-20140107.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: jackson-databind-2.11.3.jar | |
[INFO] Resolved: util-39cb1fd.jar | |
[INFO] Resolved: classgraph-4.8.98.jar | |
[INFO] Resolved: archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: kryo-shaded-4.0.2.jar | |
[INFO] Resolved: minlog-1.3.0.jar | |
[INFO] Resolved: java-semver-0.9.0.jar | |
[INFO] Resolved: jaxb-core-2.3.0.1.jar | |
[INFO] Resolved: activation-1.1.1.jar | |
[INFO] Resolved: commons-text-1.9.jar | |
[INFO] Resolved: reflections-0.9.12.jar | |
[INFO] Resolved: javassist-3.26.0-GA.jar | |
[INFO] Resolved: jaxb-impl-2.3.3.jar | |
[INFO] Resolved: threeten-extra-1.5.0.jar | |
[INFO] Resolved: archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jakarta.json-1.1.6-module.jar | |
[INFO] Resolved: justify-2.1.0.jar | |
[INFO] Resolved: jakarta.json-api-1.1.6.jar | |
[INFO] Resolved: icu4j-65.1.jar | |
[INFO] Resolved: utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: opt-1.4-39cb1fd.jar | |
[INFO] Resolved: xmlbeans-3.1.0.jar | |
[INFO] Resolved: jooq-pg-0.16.5.jar | |
[INFO] Resolved: base-0.16.5.jar | |
[INFO] Resolved: flyway-core-6.5.7.jar | |
[INFO] Resolved: jooq-codegen-maven-3.12.3.jar | |
[INFO] Resolved: jooq-codegen-3.12.3.jar | |
[INFO] Resolved: jooq-meta-3.12.3.jar | |
[INFO] Resolved: maven-plugin-api-3.6.0.jar | |
[INFO] Resolved: maven-model-3.6.0.jar | |
[INFO] Resolved: maven-artifact-3.6.0.jar | |
[INFO] Resolved: org.eclipse.sisu.plexus-0.3.3.jar | |
[INFO] Resolved: cdi-api-1.0.jar | |
[INFO] Resolved: jsr250-api-1.0.jar | |
[INFO] Resolved: plexus-utils-3.1.0.jar | |
[INFO] Resolved: plexus-classworlds-2.5.2.jar | |
[INFO] Resolved: maven-core-3.6.0.jar | |
[INFO] Resolved: maven-settings-3.6.0.jar | |
[INFO] Resolved: maven-settings-builder-3.6.0.jar | |
[INFO] Resolved: plexus-interpolation-1.25.jar | |
[INFO] Resolved: plexus-sec-dispatcher-1.4.jar | |
[INFO] Resolved: plexus-cipher-1.4.jar | |
[INFO] Resolved: maven-builder-support-3.6.0.jar | |
[INFO] Resolved: maven-repository-metadata-3.6.0.jar | |
[INFO] Resolved: maven-model-builder-3.6.0.jar | |
[INFO] Resolved: maven-resolver-provider-3.6.0.jar | |
[INFO] Resolved: maven-resolver-impl-1.3.1.jar | |
[INFO] Resolved: maven-resolver-api-1.3.1.jar | |
[INFO] Resolved: maven-resolver-spi-1.3.1.jar | |
[INFO] Resolved: maven-resolver-util-1.3.1.jar | |
[INFO] Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Resolved: org.eclipse.sisu.inject-0.3.3.jar | |
[INFO] Resolved: guice-4.2.1-no_aop.jar | |
[INFO] Resolved: aopalliance-1.0.jar | |
[INFO] Resolved: javax.inject-1.jar | |
[INFO] Resolved: plexus-component-annotations-1.7.1.jar | |
[INFO] Resolved: validation-39cb1fd.jar | |
[INFO] Resolved: terminology-39cb1fd.jar | |
[INFO] Resolved: fluent-hc-4.5.13.jar | |
[INFO] Resolved: httpclient-4.5.13.jar | |
[INFO] Resolved: httpcore-4.4.13.jar | |
[INFO] Resolved: commons-codec-1.14.jar | |
[INFO] Resolved: commons-logging-1.2.jar | |
[INFO] Resolved: web-template-39cb1fd.jar | |
[INFO] Resolved: postgresql-42.2.18.jar | |
[INFO] Resolved: checker-qual-3.5.0.jar | |
[INFO] Resolved: jooq-3.12.3.jar | |
[INFO] Resolved: reactive-streams-1.0.3.jar | |
[INFO] Resolved: commons-collections4-4.1.jar | |
[INFO] Resolved: commons-io-2.6.jar | |
[INFO] Resolved: gson-2.8.6.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: log4j-core-2.13.3.jar | |
[INFO] Resolved: joda-time-2.10.6.jar | |
[INFO] Resolved: antlr4-runtime-4.9.1.jar | |
[INFO] Resolved: cache-api-1.1.1.jar | |
[INFO] Resolved: ehcache-3.8.1.jar | |
[INFO] Resolved: jaxb-runtime-2.3.3.jar | |
[INFO] Resolved: txw2-2.3.3.jar | |
[INFO] Resolved: istack-commons-runtime-3.0.11.jar | |
[INFO] Resolved: jakarta.activation-1.2.2.jar | |
[INFO] Resolved: commons-lang3-3.11.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: test-data-39cb1fd.jar | |
[INFO] Resolved: rest-openehr-0.16.5.jar | |
[INFO] Resolved: spring-boot-starter-web-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-json-2.3.5.RELEASE.jar | |
[INFO] Resolved: jackson-datatype-jdk8-2.11.3.jar | |
[INFO] Resolved: jackson-module-parameter-names-2.11.3.jar | |
[INFO] Resolved: spring-boot-starter-tomcat-2.3.5.RELEASE.jar | |
[INFO] Resolved: tomcat-embed-core-9.0.39.jar | |
[INFO] Resolved: jakarta.el-3.0.3.jar | |
[INFO] Resolved: tomcat-embed-websocket-9.0.39.jar | |
[INFO] Resolved: spring-webmvc-5.2.10.RELEASE.jar | |
[INFO] Resolved: springfox-swagger2-2.9.2.jar | |
[INFO] Resolved: springfox-spi-2.9.2.jar | |
[INFO] Resolved: springfox-core-2.9.2.jar | |
[INFO] Resolved: springfox-schema-2.9.2.jar | |
[INFO] Resolved: springfox-swagger-common-2.9.2.jar | |
[INFO] Resolved: springfox-spring-web-2.9.2.jar | |
[INFO] Resolved: classmate-1.5.1.jar | |
[INFO] Resolved: spring-plugin-core-1.2.0.RELEASE.jar | |
[INFO] Resolved: spring-plugin-metadata-1.2.0.RELEASE.jar | |
[INFO] Resolved: mapstruct-1.2.0.Final.jar | |
[INFO] Resolved: swagger-models-1.6.2.jar | |
[INFO] Resolved: ipf-atna-spring-boot-starter-4.0.0.jar | |
[INFO] Resolved: jakarta.validation-api-2.0.2.jar | |
[INFO] Resolved: ipf-commons-audit-4.0.0.jar | |
[INFO] Resolved: jdom2-2.0.6.jar | |
[INFO] Resolved: jcl-over-slf4j-1.7.30.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] -----------------< org.ehrbase.openehr:rest-ehr-scape >----------------- | |
[INFO] Building rest-ehr-scape 0.16.5 [7/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-ehr-scape --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/rest-ehr-scape/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ rest-ehr-scape --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 1 resource | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ rest-ehr-scape --- | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ rest-ehr-scape >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ rest-ehr-scape --- | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ rest-ehr-scape <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ rest-ehr-scape --- | |
[INFO] Resolved: spring-boot-starter-web-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-starter-json-2.3.5.RELEASE.jar | |
[INFO] Resolved: jackson-databind-2.11.3.jar | |
[INFO] Resolved: jackson-datatype-jdk8-2.11.3.jar | |
[INFO] Resolved: jackson-module-parameter-names-2.11.3.jar | |
[INFO] Resolved: spring-boot-starter-tomcat-2.3.5.RELEASE.jar | |
[INFO] Resolved: tomcat-embed-core-9.0.39.jar | |
[INFO] Resolved: jakarta.el-3.0.3.jar | |
[INFO] Resolved: tomcat-embed-websocket-9.0.39.jar | |
[INFO] Resolved: spring-web-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-webmvc-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: api-0.16.5.jar | |
[INFO] Resolved: serialisation-39cb1fd.jar | |
[INFO] Resolved: building-39cb1fd.jar | |
[INFO] Resolved: org.everit.json.schema-1.12.1.jar | |
[INFO] Resolved: commons-validator-1.6.jar | |
[INFO] Resolved: commons-digester-1.8.1.jar | |
[INFO] Resolved: commons-logging-1.2.jar | |
[INFO] Resolved: commons-collections-3.2.2.jar | |
[INFO] Resolved: handy-uri-templates-2.1.8.jar | |
[INFO] Resolved: joda-time-2.10.6.jar | |
[INFO] Resolved: re2j-1.3.jar | |
[INFO] Resolved: jaxb-api-2.3.1.jar | |
[INFO] Resolved: javax.activation-api-1.2.0.jar | |
[INFO] Resolved: json-20140107.jar | |
[INFO] Resolved: commons-io-2.6.jar | |
[INFO] Resolved: commons-collections4-4.1.jar | |
[INFO] Resolved: util-39cb1fd.jar | |
[INFO] Resolved: classgraph-4.8.98.jar | |
[INFO] Resolved: response-dto-39cb1fd.jar | |
[INFO] Resolved: jackson-dataformat-xml-2.11.3.jar | |
[INFO] Resolved: jackson-core-2.11.3.jar | |
[INFO] Resolved: jackson-module-jaxb-annotations-2.11.3.jar | |
[INFO] Resolved: stax2-api-4.2.1.jar | |
[INFO] Resolved: woodstox-core-6.2.1.jar | |
[INFO] Resolved: jackson-datatype-jsr310-2.9.10.jar | |
[INFO] Resolved: archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: kryo-shaded-4.0.2.jar | |
[INFO] Resolved: minlog-1.3.0.jar | |
[INFO] Resolved: java-semver-0.9.0.jar | |
[INFO] Resolved: jaxb-core-2.3.0.1.jar | |
[INFO] Resolved: activation-1.1.1.jar | |
[INFO] Resolved: commons-text-1.9.jar | |
[INFO] Resolved: reflections-0.9.12.jar | |
[INFO] Resolved: javassist-3.26.0-GA.jar | |
[INFO] Resolved: jaxb-impl-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-1.2.2.jar | |
[INFO] Resolved: threeten-extra-1.5.0.jar | |
[INFO] Resolved: archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: antlr4-runtime-4.9.1.jar | |
[INFO] Resolved: i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jakarta.json-1.1.6-module.jar | |
[INFO] Resolved: justify-2.1.0.jar | |
[INFO] Resolved: jakarta.json-api-1.1.6.jar | |
[INFO] Resolved: icu4j-65.1.jar | |
[INFO] Resolved: utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jackson-annotations-2.11.3.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: web-template-39cb1fd.jar | |
[INFO] Resolved: opt-1.4-39cb1fd.jar | |
[INFO] Resolved: xmlbeans-3.1.0.jar | |
[INFO] Resolved: terminology-39cb1fd.jar | |
[INFO] Resolved: cache-api-1.1.1.jar | |
[INFO] Resolved: springfox-swagger2-2.9.2.jar | |
[INFO] Resolved: springfox-spi-2.9.2.jar | |
[INFO] Resolved: springfox-core-2.9.2.jar | |
[INFO] Resolved: springfox-schema-2.9.2.jar | |
[INFO] Resolved: springfox-swagger-common-2.9.2.jar | |
[INFO] Resolved: springfox-spring-web-2.9.2.jar | |
[INFO] Resolved: guava-20.0.jar | |
[INFO] Resolved: classmate-1.5.1.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: spring-plugin-core-1.2.0.RELEASE.jar | |
[INFO] Resolved: spring-plugin-metadata-1.2.0.RELEASE.jar | |
[INFO] Resolved: mapstruct-1.2.0.Final.jar | |
[INFO] Resolved: swagger-annotations-1.6.2.jar | |
[INFO] Resolved: commons-lang3-3.11.jar | |
[INFO] Resolved: gson-2.8.6.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] ------------------< org.ehrbase.openehr:application >------------------- | |
[INFO] Building application 0.16.5 [8/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.3.5.RELEASE/spring-boot-maven-plugin-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.3.5.RELEASE/spring-boot-maven-plugin-2.3.5.RELEASE.pom (2.9 kB at 113 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.3.5.RELEASE/spring-boot-maven-plugin-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.3.5.RELEASE/spring-boot-maven-plugin-2.3.5.RELEASE.jar (94 kB at 3.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-actuator/2.3.5.RELEASE/spring-boot-starter-actuator-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.3.5.RELEASE/spring-boot-starter-actuator-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.3.5.RELEASE/spring-boot-starter-actuator-2.3.5.RELEASE.pom (2.6 kB at 97 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-actuator-autoconfigure/2.3.5.RELEASE/spring-boot-actuator-autoconfigure-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.3.5.RELEASE/spring-boot-actuator-autoconfigure-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.3.5.RELEASE/spring-boot-actuator-autoconfigure-2.3.5.RELEASE.pom (2.9 kB at 61 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-actuator/2.3.5.RELEASE/spring-boot-actuator-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.3.5.RELEASE/spring-boot-actuator-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.3.5.RELEASE/spring-boot-actuator-2.3.5.RELEASE.pom (2.1 kB at 58 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/micrometer/micrometer-core/1.5.6/micrometer-core-1.5.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.5.6/micrometer-core-1.5.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.5.6/micrometer-core-1.5.6.pom (8.2 kB at 304 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom (11 kB at 415 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom (7.2 kB at 234 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-oauth2-resource-server/2.3.5.RELEASE/spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/2.3.5.RELEASE/spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/2.3.5.RELEASE/spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.pom (3.0 kB at 113 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-resource-server/5.3.5.RELEASE/spring-security-oauth2-resource-server-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/5.3.5.RELEASE/spring-security-oauth2-resource-server-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/5.3.5.RELEASE/spring-security-oauth2-resource-server-5.3.5.RELEASE.pom (5.3 kB at 190 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-core/5.3.5.RELEASE/spring-security-oauth2-core-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/5.3.5.RELEASE/spring-security-oauth2-core-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/5.3.5.RELEASE/spring-security-oauth2-core-5.3.5.RELEASE.pom (4.9 kB at 119 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-jose/5.3.5.RELEASE/spring-security-oauth2-jose-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/5.3.5.RELEASE/spring-security-oauth2-jose-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/5.3.5.RELEASE/spring-security-oauth2-jose-5.3.5.RELEASE.pom (5.4 kB at 202 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/nimbus-jose-jwt/8.19/nimbus-jose-jwt-8.19.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/8.19/nimbus-jose-jwt-8.19.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/8.19/nimbus-jose-jwt-8.19.pom (13 kB at 490 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom (5.4 kB at 201 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-data-jpa/2.3.5.RELEASE/spring-boot-starter-data-jpa-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/2.3.5.RELEASE/spring-boot-starter-data-jpa-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/2.3.5.RELEASE/spring-boot-starter-data-jpa-2.3.5.RELEASE.pom (4.1 kB at 152 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-aop/2.3.5.RELEASE/spring-boot-starter-aop-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/2.3.5.RELEASE/spring-boot-starter-aop-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/2.3.5.RELEASE/spring-boot-starter-aop-2.3.5.RELEASE.pom (2.5 kB at 90 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.pom (1.0 kB at 39 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-jdbc/2.3.5.RELEASE/spring-boot-starter-jdbc-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.3.5.RELEASE/spring-boot-starter-jdbc-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.3.5.RELEASE/spring-boot-starter-jdbc-2.3.5.RELEASE.pom (2.5 kB at 96 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.pom (27 kB at 1.0 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.pom (13 kB at 497 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/jakarta/persistence/jakarta.persistence-api/2.2.3/jakarta.persistence-api-2.2.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/2.2.3/jakarta.persistence-api-2.2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/2.2.3/jakarta.persistence-api-2.2.3.pom (13 kB at 463 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/hibernate/hibernate-core/5.4.22.Final/hibernate-core-5.4.22.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-core/5.4.22.Final/hibernate-core-5.4.22.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-core/5.4.22.Final/hibernate-core-5.4.22.Final.pom (6.1 kB at 150 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.pom (5.0 kB at 199 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/jboss-parent/34/jboss-parent-34.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/34/jboss-parent-34.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/34/jboss-parent-34.pom (65 kB at 2.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.pom (11 kB at 398 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/antlr/antlr/2.7.7/antlr-2.7.7.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.pom (632 B at 25 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/jandex/2.1.3.Final/jandex-2.1.3.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.1.3.Final/jandex-2.1.3.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.1.3.Final/jandex-2.1.3.Final.pom (6.4 kB at 247 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/jboss-parent/12/jboss-parent-12.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/12/jboss-parent-12.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/12/jboss-parent-12.pom (32 kB at 1.1 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.pom (2.8 kB at 110 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/hibernate/common/hibernate-commons-annotations/5.1.0.Final/hibernate-commons-annotations-5.1.0.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/5.1.0.Final/hibernate-commons-annotations-5.1.0.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/5.1.0.Final/hibernate-commons-annotations-5.1.0.Final.pom (1.9 kB at 78 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/spring-data-jpa/2.3.5.RELEASE/spring-data-jpa-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/2.3.5.RELEASE/spring-data-jpa-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/2.3.5.RELEASE/spring-data-jpa-2.3.5.RELEASE.pom (12 kB at 442 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/build/spring-data-parent/2.3.5.RELEASE/spring-data-parent-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-parent/2.3.5.RELEASE/spring-data-parent-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-parent/2.3.5.RELEASE/spring-data-parent-2.3.5.RELEASE.pom (39 kB at 1.2 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.9/kotlinx-coroutines-bom-1.3.9.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.9/kotlinx-coroutines-bom-1.3.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.9/kotlinx-coroutines-bom-1.3.9.pom (4.1 kB at 164 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/spring-data-commons/2.3.5.RELEASE/spring-data-commons-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/2.3.5.RELEASE/spring-data-commons-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/2.3.5.RELEASE/spring-data-commons-2.3.5.RELEASE.pom (9.7 kB at 359 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-orm/5.2.10.RELEASE/spring-orm-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/5.2.10.RELEASE/spring-orm-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/5.2.10.RELEASE/spring-orm-5.2.10.RELEASE.pom (2.3 kB at 85 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-aspects/5.2.10.RELEASE/spring-aspects-5.2.10.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/5.2.10.RELEASE/spring-aspects-5.2.10.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/5.2.10.RELEASE/spring-aspects-5.2.10.RELEASE.pom (1.7 kB at 64 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-validation/2.3.5.RELEASE/spring-boot-starter-validation-2.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.3.5.RELEASE/spring-boot-starter-validation-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.3.5.RELEASE/spring-boot-starter-validation-2.3.5.RELEASE.pom (2.5 kB at 94 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/hibernate/validator/hibernate-validator/6.1.6.Final/hibernate-validator-6.1.6.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.1.6.Final/hibernate-validator-6.1.6.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.1.6.Final/hibernate-validator-6.1.6.Final.pom (14 kB at 501 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/hibernate/validator/hibernate-validator-parent/6.1.6.Final/hibernate-validator-parent-6.1.6.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/6.1.6.Final/hibernate-validator-parent-6.1.6.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/6.1.6.Final/hibernate-validator-parent-6.1.6.Final.pom (68 kB at 2.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom (11 kB at 313 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom (4.0 kB at 153 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom (5.3 kB at 189 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom (5.2 kB at 202 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.pom (1.9 kB at 72 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/micrometer/micrometer-registry-prometheus/1.6.1/micrometer-registry-prometheus-1.6.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.6.1/micrometer-registry-prometheus-1.6.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.6.1/micrometer-registry-prometheus-1.6.1.pom (3.1 kB at 116 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/prometheus/simpleclient_common/0.9.0/simpleclient_common-0.9.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.9.0/simpleclient_common-0.9.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.9.0/simpleclient_common-0.9.0.pom (1.6 kB at 62 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/prometheus/parent/0.9.0/parent-0.9.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/parent/0.9.0/parent-0.9.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/parent/0.9.0/parent-0.9.0.pom (7.5 kB at 266 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/io/prometheus/simpleclient/0.9.0/simpleclient-0.9.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.9.0/simpleclient-0.9.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.9.0/simpleclient-0.9.0.pom (1.6 kB at 62 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-client/5.3.5.RELEASE/spring-security-oauth2-client-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-client/5.3.5.RELEASE/spring-security-oauth2-client-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-client/5.3.5.RELEASE/spring-security-oauth2-client-5.3.5.RELEASE.pom (7.8 kB at 279 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.pom (12 kB at 478 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/content-type/2.0/content-type-2.0.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/content-type/2.0/content-type-2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/content-type/2.0/content-type-2.0.pom (8.9 kB at 342 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.pom (9.5 kB at 367 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/mail/javax.mail/1.6.1/javax.mail-1.6.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/mail/javax.mail/1.6.1/javax.mail-1.6.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/mail/javax.mail/1.6.1/javax.mail-1.6.1.pom (7.0 kB at 269 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/sun/mail/all/1.6.1/all-1.6.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/mail/all/1.6.1/all-1.6.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/mail/all/1.6.1/all-1.6.1.pom (23 kB at 856 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/javax/activation/activation/1.1/activation-1.1.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 41 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-test/5.3.5.RELEASE/spring-security-test-5.3.5.RELEASE.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/5.3.5.RELEASE/spring-security-test-5.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/5.3.5.RELEASE/spring-security-test-5.3.5.RELEASE.pom (7.0 kB at 261 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-actuator/2.3.5.RELEASE/spring-boot-starter-actuator-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-actuator-autoconfigure/2.3.5.RELEASE/spring-boot-actuator-autoconfigure-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-actuator/2.3.5.RELEASE/spring-boot-actuator-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar | |
Downloading from jitpack.io: https://jitpack.io/io/micrometer/micrometer-core/1.5.6/micrometer-core-1.5.6.jar | |
Downloading from jitpack.io: https://jitpack.io/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-oauth2-resource-server/2.3.5.RELEASE/spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-resource-server/5.3.5.RELEASE/spring-security-oauth2-resource-server-5.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-jose/5.3.5.RELEASE/spring-security-oauth2-jose-5.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/nimbus-jose-jwt/8.19/nimbus-jose-jwt-8.19.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-data-jpa/2.3.5.RELEASE/spring-boot-starter-data-jpa-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-aop/2.3.5.RELEASE/spring-boot-starter-aop-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-jdbc/2.3.5.RELEASE/spring-boot-starter-jdbc-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar | |
Downloading from jitpack.io: https://jitpack.io/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.jar | |
Downloading from jitpack.io: https://jitpack.io/jakarta/persistence/jakarta.persistence-api/2.2.3/jakarta.persistence-api-2.2.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/hibernate/hibernate-core/5.4.22.Final/hibernate-core-5.4.22.Final.jar | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar | |
Downloading from jitpack.io: https://jitpack.io/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.jar | |
Downloading from jitpack.io: https://jitpack.io/antlr/antlr/2.7.7/antlr-2.7.7.jar | |
Downloading from jitpack.io: https://jitpack.io/org/jboss/jandex/2.1.3.Final/jandex-2.1.3.Final.jar | |
Downloading from jitpack.io: https://jitpack.io/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar | |
Downloading from jitpack.io: https://jitpack.io/org/hibernate/common/hibernate-commons-annotations/5.1.0.Final/hibernate-commons-annotations-5.1.0.Final.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/spring-data-jpa/2.3.5.RELEASE/spring-data-jpa-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/data/spring-data-commons/2.3.5.RELEASE/spring-data-commons-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-orm/5.2.10.RELEASE/spring-orm-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/spring-aspects/5.2.10.RELEASE/spring-aspects-5.2.10.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/boot/spring-boot-starter-validation/2.3.5.RELEASE/spring-boot-starter-validation-2.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/hibernate/validator/hibernate-validator/6.1.6.Final/hibernate-validator-6.1.6.Final.jar | |
Downloading from jitpack.io: https://jitpack.io/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar | |
Downloading from jitpack.io: https://jitpack.io/io/micrometer/micrometer-registry-prometheus/1.6.1/micrometer-registry-prometheus-1.6.1.jar | |
Downloading from jitpack.io: https://jitpack.io/io/prometheus/simpleclient_common/0.9.0/simpleclient_common-0.9.0.jar | |
Downloading from jitpack.io: https://jitpack.io/io/prometheus/simpleclient/0.9.0/simpleclient-0.9.0.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-client/5.3.5.RELEASE/spring-security-oauth2-client-5.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/content-type/2.0/content-type-2.0.jar | |
Downloading from jitpack.io: https://jitpack.io/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.jar | |
Downloading from jitpack.io: https://jitpack.io/com/sun/mail/javax.mail/1.6.1/javax.mail-1.6.1.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-oauth2-core/5.3.5.RELEASE/spring-security-oauth2-core-5.3.5.RELEASE.jar | |
Downloading from jitpack.io: https://jitpack.io/org/springframework/security/spring-security-test/5.3.5.RELEASE/spring-security-test-5.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.3.5.RELEASE/spring-boot-starter-actuator-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.3.5.RELEASE/spring-boot-actuator-autoconfigure-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.5.6/micrometer-core-1.5.6.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.3.5.RELEASE/spring-boot-actuator-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.3.5.RELEASE/spring-boot-starter-actuator-2.3.5.RELEASE.jar (4.8 kB at 137 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar (174 kB at 1.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/2.3.5.RELEASE/spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar (30 kB at 240 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/5.3.5.RELEASE/spring-security-oauth2-resource-server-5.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.3.5.RELEASE/spring-boot-actuator-2.3.5.RELEASE.jar (593 kB at 3.6 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/5.3.5.RELEASE/spring-security-oauth2-jose-5.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-oauth2-resource-server/2.3.5.RELEASE/spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.jar (4.8 kB at 26 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/8.19/nimbus-jose-jwt-8.19.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.5.6/micrometer-core-1.5.6.jar (590 kB at 3.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/2.3.5.RELEASE/spring-boot-starter-data-jpa-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.3.5.RELEASE/spring-boot-actuator-autoconfigure-2.3.5.RELEASE.jar (516 kB at 2.6 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/2.3.5.RELEASE/spring-boot-starter-aop-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-resource-server/5.3.5.RELEASE/spring-security-oauth2-resource-server-5.3.5.RELEASE.jar (74 kB at 357 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-jose/5.3.5.RELEASE/spring-security-oauth2-jose-5.3.5.RELEASE.jar (63 kB at 270 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.3.5.RELEASE/spring-boot-starter-jdbc-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-data-jpa/2.3.5.RELEASE/spring-boot-starter-data-jpa-2.3.5.RELEASE.jar (4.8 kB at 18 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-aop/2.3.5.RELEASE/spring-boot-starter-aop-2.3.5.RELEASE.jar (4.8 kB at 18 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/nimbus-jose-jwt/8.19/nimbus-jose-jwt-8.19.jar (350 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/2.2.3/jakarta.persistence-api-2.2.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.3.5.RELEASE/spring-boot-starter-jdbc-2.3.5.RELEASE.jar (4.8 kB at 17 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-core/5.4.22.Final/hibernate-core-5.4.22.Final.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/transaction/jakarta.transaction-api/1.3.3/jakarta.transaction-api-1.3.3.jar (15 kB at 50 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar (156 kB at 459 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/persistence/jakarta.persistence-api/2.2.3/jakarta.persistence-api-2.2.3.jar (164 kB at 415 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar (61 kB at 141 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.1.3.Final/jandex-2.1.3.Final.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.1.3.Final/jandex-2.1.3.Final.jar (196 kB at 322 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.jar (778 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/5.1.0.Final/hibernate-commons-annotations-5.1.0.Final.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.7/antlr-2.7.7.jar (445 kB at 718 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/2.3.5.RELEASE/spring-data-jpa-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/aspectj/aspectjweaver/1.9.6/aspectjweaver-1.9.6.jar (2.1 MB at 3.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/2.3.5.RELEASE/spring-data-commons-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/common/hibernate-commons-annotations/5.1.0.Final/hibernate-commons-annotations-5.1.0.Final.jar (76 kB at 114 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/5.2.10.RELEASE/spring-orm-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/dom4j/dom4j/2.1.3/dom4j-2.1.3.jar (324 kB at 437 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/5.2.10.RELEASE/spring-aspects-5.2.10.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-orm/5.2.10.RELEASE/spring-orm-5.2.10.RELEASE.jar (201 kB at 264 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.3.5.RELEASE/spring-boot-starter-validation-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-jpa/2.3.5.RELEASE/spring-data-jpa-2.3.5.RELEASE.jar (368 kB at 475 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.1.6.Final/hibernate-validator-6.1.6.Final.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-aspects/5.2.10.RELEASE/spring-aspects-5.2.10.RELEASE.jar (47 kB at 60 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.3.5.RELEASE/spring-boot-starter-validation-2.3.5.RELEASE.jar (4.8 kB at 6.0 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.6.1/micrometer-registry-prometheus-1.6.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.6.1/micrometer-registry-prometheus-1.6.1.jar (37 kB at 42 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.9.0/simpleclient_common-0.9.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.9.0/simpleclient_common-0.9.0.jar (5.8 kB at 6.2 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.9.0/simpleclient-0.9.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.9.0/simpleclient-0.9.0.jar (58 kB at 57 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-commons/2.3.5.RELEASE/spring-data-commons-2.3.5.RELEASE.jar (1.2 MB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-client/5.3.5.RELEASE/spring-security-oauth2-client-5.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-client/5.3.5.RELEASE/spring-security-oauth2-client-5.3.5.RELEASE.jar (359 kB at 297 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/oauth2-oidc-sdk/7.1.1/oauth2-oidc-sdk-7.1.1.jar (485 kB at 400 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/content-type/2.0/content-type-2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.jar (4.7 kB at 3.7 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/content-type/2.0/content-type-2.0.jar (7.9 kB at 6.2 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/sun/mail/javax.mail/1.6.1/javax.mail-1.6.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.1.6.Final/hibernate-validator-6.1.6.Final.jar (1.3 MB at 1.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/5.3.5.RELEASE/spring-security-oauth2-core-5.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/nimbusds/lang-tag/1.4.4/lang-tag-1.4.4.jar (11 kB at 8.1 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/5.3.5.RELEASE/spring-security-test-5.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-oauth2-core/5.3.5.RELEASE/spring-security-oauth2-core-5.3.5.RELEASE.jar (87 kB at 62 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-test/5.3.5.RELEASE/spring-security-test-5.3.5.RELEASE.jar (108 kB at 75 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/sun/mail/javax.mail/1.6.1/javax.mail-1.6.1.jar (654 kB at 448 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar (2.9 MB at 1.9 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hibernate/hibernate-core/5.4.22.Final/hibernate-core-5.4.22.Final.jar (7.3 MB at 4.7 MB/s) | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ application --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/application/target/jacoco.exec | |
[INFO] | |
[INFO] --- spring-boot-maven-plugin:2.3.5.RELEASE:build-info (build-info) @ application --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/2.3.5.RELEASE/spring-boot-buildpack-platform-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/2.3.5.RELEASE/spring-boot-buildpack-platform-2.3.5.RELEASE.pom (3.1 kB at 96 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.pom (1.8 kB at 72 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.5.0/jna-5.5.0.pom (1.6 kB at 61 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom (18 kB at 675 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 2.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 537 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.3.5.RELEASE/spring-boot-loader-tools-2.3.5.RELEASE.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.3.5.RELEASE/spring-boot-loader-tools-2.3.5.RELEASE.pom (2.3 kB at 88 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom (5.3 kB at 203 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom (5.1 kB at 196 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom (5.0 kB at 192 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.pom (3.0 kB at 117 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.6.3/maven-3.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.6.3/maven-3.6.3.pom (26 kB at 979 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.6.3/maven-model-3.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.6.3/maven-model-3.6.3.pom (4.1 kB at 151 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.pom (5.3 kB at 205 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.6.3/maven-artifact-3.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.6.3/maven-artifact-3.6.3.pom (2.4 kB at 86 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.pom (4.2 kB at 167 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.4/sisu-plexus-0.3.4.pom (14 kB at 508 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.pom (2.6 kB at 101 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.4/sisu-inject-0.3.4.pom (14 kB at 554 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 293 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/2.3.5.RELEASE/spring-boot-buildpack-platform-2.3.5.RELEASE.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.5.0/jna-5.5.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-buildpack-platform/2.3.5.RELEASE/spring-boot-buildpack-platform-2.3.5.RELEASE.jar (183 kB at 2.7 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.3.5.RELEASE/spring-boot-loader-tools-2.3.5.RELEASE.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 2.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar (615 kB at 3.4 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.3.5.RELEASE/spring-boot-loader-tools-2.3.5.RELEASE.jar (241 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.jar (61 kB at 303 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.6.3/maven-plugin-api-3.6.3.jar (47 kB at 184 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar (164 kB at 627 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.4/org.eclipse.sisu.plexus-0.3.4.jar (205 kB at 687 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.1/plexus-utils-3.2.1.jar (262 kB at 727 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.jar (53 kB at 144 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.4/org.eclipse.sisu.inject-0.3.4.jar (379 kB at 1.0 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.5.0/jna-5.5.0.jar (1.5 MB at 3.5 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.5.0/jna-platform-5.5.0.jar (2.7 MB at 4.6 MB/s) | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ application --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 4 resources | |
[INFO] Copying 4 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ application --- | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ application >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ application --- | |
Downloading from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven-plugin/1.4.13/dockerfile-maven-plugin-1.4.13.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven-plugin/1.4.13/dockerfile-maven-plugin-1.4.13.jar (39 kB at 1.2 MB/s) | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: dockerfile-maven-plugin-1.4.13.jar | |
Downloading from jitpack.io: https://jitpack.io/com/spotify/dockerfile-maven-plugin/1.4.13/dockerfile-maven-plugin-1.4.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven-plugin/1.4.13/dockerfile-maven-plugin-1.4.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven-plugin/1.4.13/dockerfile-maven-plugin-1.4.13.pom (5.6 kB at 201 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/spotify/dockerfile-maven/1.4.13/dockerfile-maven-1.4.13.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven/1.4.13/dockerfile-maven-1.4.13.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven/1.4.13/dockerfile-maven-1.4.13.pom (2.4 kB at 88 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/spotify/foss-root/6/foss-root-6.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/com/spotify/foss-root/6/foss-root-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/spotify/foss-root/6/foss-root-6.pom (8.3 kB at 309 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/spotify/docker-client/8.16.0/docker-client-8.16.0-shaded.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/spotify/docker-client/8.16.0/docker-client-8.16.0-shaded.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/spotify/docker-client/8.16.0/docker-client-8.16.0-shaded.jar (11 MB at 18 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/auth/google-auth-library-oauth2-http/0.6.0/google-auth-library-oauth2-http-0.6.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.6.0/google-auth-library-oauth2-http-0.6.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.6.0/google-auth-library-oauth2-http-0.6.0.jar (52 kB at 1.8 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/guava/guava/23.6.1-jre/guava-23.6.1-jre.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/23.6.1-jre/guava-23.6.1-jre.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/23.6.1-jre/guava-23.6.1-jre.jar (2.7 MB at 15 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/spotify/dockerfile-maven-extension/1.4.13/dockerfile-maven-extension-1.4.13.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven-extension/1.4.13/dockerfile-maven-extension-1.4.13.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/spotify/dockerfile-maven-extension/1.4.13/dockerfile-maven-extension-1.4.13.jar (2.6 kB at 101 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-plugin-api/3.5.4/maven-plugin-api-3.5.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.5.4/maven-plugin-api-3.5.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.5.4/maven-plugin-api-3.5.4.jar (48 kB at 1.4 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/apache/maven/maven-core/3.5.4/maven-core-3.5.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.5.4/maven-core-3.5.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.5.4/maven-core-3.5.4.jar (630 kB at 9.3 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar (232 kB at 5.2 MB/s) | |
[INFO] Plugin Dependency Resolved: docker-client-8.16.0-shaded.jar | |
[INFO] Plugin Dependency Resolved: google-auth-library-oauth2-http-0.6.0.jar | |
[INFO] Plugin Dependency Resolved: guava-23.6.1-jre.jar | |
[INFO] Plugin Dependency Resolved: dockerfile-maven-extension-1.4.13.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.5.4.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.5.4.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-sec-dispatcher-1.4.jar | |
[INFO] Plugin Dependency Resolved: gson-2.8.0.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: spring-boot-maven-plugin-2.3.5.RELEASE.jar | |
[INFO] Plugin Dependency Resolved: spring-boot-buildpack-platform-2.3.5.RELEASE.jar | |
[INFO] Plugin Dependency Resolved: spring-boot-loader-tools-2.3.5.RELEASE.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.6.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-build-api-0.0.7.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ application <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ application --- | |
[INFO] Resolved: spring-boot-starter-web-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-starter-json-2.3.5.RELEASE.jar | |
[INFO] Resolved: jackson-datatype-jdk8-2.11.3.jar | |
[INFO] Resolved: jackson-module-parameter-names-2.11.3.jar | |
[INFO] Resolved: spring-web-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-webmvc-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-actuator-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-actuator-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-actuator-2.3.5.RELEASE.jar | |
[INFO] Resolved: micrometer-core-1.5.6.jar | |
[INFO] Resolved: HdrHistogram-2.1.12.jar | |
[INFO] Resolved: LatencyUtils-2.0.3.jar | |
[INFO] Resolved: spring-boot-starter-tomcat-2.3.5.RELEASE.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: tomcat-embed-core-9.0.39.jar | |
[INFO] Resolved: jakarta.el-3.0.3.jar | |
[INFO] Resolved: tomcat-embed-websocket-9.0.39.jar | |
[INFO] Resolved: spring-boot-starter-security-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-security-config-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-web-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-core-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-oauth2-resource-server-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-oauth2-jose-5.3.5.RELEASE.jar | |
[INFO] Resolved: nimbus-jose-jwt-8.19.jar | |
[INFO] Resolved: spring-boot-configuration-processor-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-data-jpa-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-aop-2.3.5.RELEASE.jar | |
[INFO] Resolved: aspectjweaver-1.9.6.jar | |
[INFO] Resolved: spring-boot-starter-jdbc-2.3.5.RELEASE.jar | |
[INFO] Resolved: HikariCP-3.4.5.jar | |
[INFO] Resolved: jakarta.transaction-api-1.3.3.jar | |
[INFO] Resolved: jakarta.persistence-api-2.2.3.jar | |
[INFO] Resolved: hibernate-core-5.4.22.Final.jar | |
[INFO] Resolved: jboss-logging-3.4.1.Final.jar | |
[INFO] Resolved: javassist-3.24.0-GA.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: antlr-2.7.7.jar | |
[INFO] Resolved: jandex-2.1.3.Final.jar | |
[INFO] Resolved: dom4j-2.1.3.jar | |
[INFO] Resolved: hibernate-commons-annotations-5.1.0.Final.jar | |
[INFO] Resolved: jaxb-runtime-2.3.3.jar | |
[INFO] Resolved: txw2-2.3.3.jar | |
[INFO] Resolved: istack-commons-runtime-3.0.11.jar | |
[INFO] Resolved: jakarta.activation-1.2.2.jar | |
[INFO] Resolved: spring-data-jpa-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-data-commons-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-orm-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-aspects-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-validation-2.3.5.RELEASE.jar | |
[INFO] Resolved: hibernate-validator-6.1.6.Final.jar | |
[INFO] Resolved: jakarta.validation-api-2.0.2.jar | |
[INFO] Resolved: flyway-core-6.5.7.jar | |
[INFO] Resolved: service-0.16.5.jar | |
[INFO] Resolved: spring-jdbc-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-tx-5.2.10.RELEASE.jar | |
[INFO] Resolved: archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: kryo-shaded-4.0.2.jar | |
[INFO] Resolved: minlog-1.3.0.jar | |
[INFO] Resolved: java-semver-0.9.0.jar | |
[INFO] Resolved: jaxb-core-2.3.0.1.jar | |
[INFO] Resolved: activation-1.1.1.jar | |
[INFO] Resolved: commons-text-1.9.jar | |
[INFO] Resolved: reflections-0.9.12.jar | |
[INFO] Resolved: jaxb-impl-2.3.3.jar | |
[INFO] Resolved: threeten-extra-1.5.0.jar | |
[INFO] Resolved: archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jakarta.json-1.1.6-module.jar | |
[INFO] Resolved: justify-2.1.0.jar | |
[INFO] Resolved: jakarta.json-api-1.1.6.jar | |
[INFO] Resolved: icu4j-65.1.jar | |
[INFO] Resolved: utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: opt-1.4-39cb1fd.jar | |
[INFO] Resolved: xmlbeans-3.1.0.jar | |
[INFO] Resolved: jooq-pg-0.16.5.jar | |
[INFO] Resolved: jooq-codegen-maven-3.12.3.jar | |
[INFO] Resolved: jooq-codegen-3.12.3.jar | |
[INFO] Resolved: jooq-meta-3.12.3.jar | |
[INFO] Resolved: maven-plugin-api-3.6.0.jar | |
[INFO] Resolved: maven-model-3.6.0.jar | |
[INFO] Resolved: maven-artifact-3.6.0.jar | |
[INFO] Resolved: org.eclipse.sisu.plexus-0.3.3.jar | |
[INFO] Resolved: cdi-api-1.0.jar | |
[INFO] Resolved: jsr250-api-1.0.jar | |
[INFO] Resolved: plexus-utils-3.1.0.jar | |
[INFO] Resolved: plexus-classworlds-2.5.2.jar | |
[INFO] Resolved: maven-core-3.6.0.jar | |
[INFO] Resolved: maven-settings-3.6.0.jar | |
[INFO] Resolved: maven-settings-builder-3.6.0.jar | |
[INFO] Resolved: plexus-interpolation-1.25.jar | |
[INFO] Resolved: plexus-sec-dispatcher-1.4.jar | |
[INFO] Resolved: plexus-cipher-1.4.jar | |
[INFO] Resolved: maven-builder-support-3.6.0.jar | |
[INFO] Resolved: maven-repository-metadata-3.6.0.jar | |
[INFO] Resolved: maven-model-builder-3.6.0.jar | |
[INFO] Resolved: maven-resolver-provider-3.6.0.jar | |
[INFO] Resolved: maven-resolver-impl-1.3.1.jar | |
[INFO] Resolved: maven-resolver-api-1.3.1.jar | |
[INFO] Resolved: maven-resolver-spi-1.3.1.jar | |
[INFO] Resolved: maven-resolver-util-1.3.1.jar | |
[INFO] Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Resolved: org.eclipse.sisu.inject-0.3.3.jar | |
[INFO] Resolved: guice-4.2.1-no_aop.jar | |
[INFO] Resolved: aopalliance-1.0.jar | |
[INFO] Resolved: javax.inject-1.jar | |
[INFO] Resolved: plexus-component-annotations-1.7.1.jar | |
[INFO] Resolved: validation-39cb1fd.jar | |
[INFO] Resolved: terminology-39cb1fd.jar | |
[INFO] Resolved: fluent-hc-4.5.13.jar | |
[INFO] Resolved: httpclient-4.5.13.jar | |
[INFO] Resolved: httpcore-4.4.13.jar | |
[INFO] Resolved: commons-codec-1.14.jar | |
[INFO] Resolved: commons-logging-1.2.jar | |
[INFO] Resolved: web-template-39cb1fd.jar | |
[INFO] Resolved: postgresql-42.2.18.jar | |
[INFO] Resolved: checker-qual-3.5.0.jar | |
[INFO] Resolved: jooq-3.12.3.jar | |
[INFO] Resolved: reactive-streams-1.0.3.jar | |
[INFO] Resolved: commons-collections4-4.1.jar | |
[INFO] Resolved: commons-io-2.6.jar | |
[INFO] Resolved: gson-2.8.6.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: log4j-core-2.13.3.jar | |
[INFO] Resolved: joda-time-2.10.6.jar | |
[INFO] Resolved: antlr4-runtime-4.9.1.jar | |
[INFO] Resolved: cache-api-1.1.1.jar | |
[INFO] Resolved: ehcache-3.8.1.jar | |
[INFO] Resolved: commons-lang3-3.11.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: rest-ehr-scape-0.16.5.jar | |
[INFO] Resolved: swagger-annotations-1.6.2.jar | |
[INFO] Resolved: api-0.16.5.jar | |
[INFO] Resolved: response-dto-39cb1fd.jar | |
[INFO] Resolved: jackson-dataformat-xml-2.11.3.jar | |
[INFO] Resolved: jackson-core-2.11.3.jar | |
[INFO] Resolved: jackson-module-jaxb-annotations-2.11.3.jar | |
[INFO] Resolved: stax2-api-4.2.1.jar | |
[INFO] Resolved: woodstox-core-6.2.1.jar | |
[INFO] Resolved: jackson-datatype-jsr310-2.9.10.jar | |
[INFO] Resolved: jackson-annotations-2.11.3.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: serialisation-39cb1fd.jar | |
[INFO] Resolved: building-39cb1fd.jar | |
[INFO] Resolved: org.everit.json.schema-1.12.1.jar | |
[INFO] Resolved: commons-validator-1.6.jar | |
[INFO] Resolved: commons-digester-1.8.1.jar | |
[INFO] Resolved: commons-collections-3.2.2.jar | |
[INFO] Resolved: handy-uri-templates-2.1.8.jar | |
[INFO] Resolved: re2j-1.3.jar | |
[INFO] Resolved: jaxb-api-2.3.1.jar | |
[INFO] Resolved: javax.activation-api-1.2.0.jar | |
[INFO] Resolved: guava-29.0-jre.jar | |
[INFO] Resolved: failureaccess-1.0.1.jar | |
[INFO] Resolved: listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar | |
[INFO] Resolved: jsr305-3.0.2.jar | |
[INFO] Resolved: error_prone_annotations-2.3.4.jar | |
[INFO] Resolved: j2objc-annotations-1.3.jar | |
[INFO] Resolved: json-20140107.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: jackson-databind-2.11.3.jar | |
[INFO] Resolved: util-39cb1fd.jar | |
[INFO] Resolved: classgraph-4.8.98.jar | |
[INFO] Resolved: rest-openehr-0.16.5.jar | |
[INFO] Resolved: swagger-models-1.6.2.jar | |
[INFO] Resolved: ipf-atna-spring-boot-starter-4.0.0.jar | |
[INFO] Resolved: ipf-commons-audit-4.0.0.jar | |
[INFO] Resolved: jdom2-2.0.6.jar | |
[INFO] Resolved: jcl-over-slf4j-1.7.30.jar | |
[INFO] Resolved: base-0.16.5.jar | |
[INFO] Resolved: springfox-swagger2-2.9.2.jar | |
[INFO] Resolved: springfox-spi-2.9.2.jar | |
[INFO] Resolved: springfox-core-2.9.2.jar | |
[INFO] Resolved: springfox-schema-2.9.2.jar | |
[INFO] Resolved: springfox-swagger-common-2.9.2.jar | |
[INFO] Resolved: springfox-spring-web-2.9.2.jar | |
[INFO] Resolved: classmate-1.5.1.jar | |
[INFO] Resolved: spring-plugin-core-1.2.0.RELEASE.jar | |
[INFO] Resolved: spring-plugin-metadata-1.2.0.RELEASE.jar | |
[INFO] Resolved: mapstruct-1.2.0.Final.jar | |
[INFO] Resolved: springfox-swagger-ui-2.9.2.jar | |
[INFO] Resolved: micrometer-registry-prometheus-1.6.1.jar | |
[INFO] Resolved: simpleclient_common-0.9.0.jar | |
[INFO] Resolved: simpleclient-0.9.0.jar | |
[INFO] Resolved: spring-security-oauth2-client-5.3.5.RELEASE.jar | |
[INFO] Resolved: oauth2-oidc-sdk-7.1.1.jar | |
[INFO] Resolved: jcip-annotations-1.0-1.jar | |
[INFO] Resolved: content-type-2.0.jar | |
[INFO] Resolved: lang-tag-1.4.4.jar | |
[INFO] Resolved: javax.mail-1.6.1.jar | |
[INFO] Resolved: spring-security-oauth2-core-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-security-test-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: test-data-39cb1fd.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] | |
[INFO] -----------------< org.ehrbase.openehr:test-coverage >------------------ | |
[INFO] Building test-coverage 0.16.5 [9/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ test-coverage --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/test-coverage/target/jacoco.exec,excludes=**/test/** | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ test-coverage --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /test-coverage/src/main/resources | |
[INFO] skip non existing resourceDirectory /test-coverage/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ test-coverage --- | |
[INFO] Not compiling main sources | |
[INFO] | |
[INFO] >>> maven-dependency-plugin:2.8:go-offline (default-cli) > :resolve-plugins @ test-coverage >>> | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:resolve-plugins (resolve-plugins) @ test-coverage --- | |
[INFO] Plugin Resolved: maven-source-plugin-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-jar-plugin-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: file-management-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.5.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-4.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.3.0.jar | |
[INFO] Plugin Resolved: maven-clean-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Resolved: versions-maven-plugin-2.7.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.1.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-2.12.jar | |
[INFO] Plugin Dependency Resolved: wagon-file-2.12.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.7.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-10.jar | |
[INFO] Plugin Dependency Resolved: woodstox-core-asl-4.2.0.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Resolved: jacoco-maven-plugin-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.22.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.1.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.agent-0.8.6-runtime.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.core-0.8.6.jar | |
[INFO] Plugin Dependency Resolved: org.jacoco.report-0.8.6.jar | |
[INFO] Plugin Resolved: maven-dependency-plugin-2.8.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-core-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-repository-metadata-2.0.9.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-impl-2.0.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-2.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.9.jar | |
[INFO] Plugin Dependency Resolved: file-management-1.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-container-default-1.0-alpha-9-stable-1.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-2.0.6.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-analyzer-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-dependency-tree-2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-1.4.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-2.0.11.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.6.jar | |
[INFO] Plugin Dependency Resolved: commons-collections-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: classworlds-1.1.jar | |
[INFO] Plugin Resolved: maven-javadoc-plugin-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-3.2.0.jar | |
[INFO] Plugin Dependency Resolved: maven-invoker-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-common-artifact-filters-3.0.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-transfer-0.10.1.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.7.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.7.4.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0-beta-6.jar | |
[INFO] Plugin Dependency Resolved: commons-lang3-3.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: httpclient-4.5.8.jar | |
[INFO] Plugin Dependency Resolved: qdox-2.0-M10.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-1.0.3.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-3.6.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-io-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.24.jar | |
[INFO] Plugin Dependency Resolved: plexus-interactivity-api-1.0-alpha-6.jar | |
[INFO] Plugin Resolved: maven-resources-plugin-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.1.0.jar | |
[INFO] Plugin Dependency Resolved: maven-filtering-3.1.1.jar | |
[INFO] Plugin Dependency Resolved: commons-io-2.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-interpolation-1.24.jar | |
[INFO] Plugin Resolved: maven-deploy-plugin-2.8.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] Plugin Resolved: maven-site-plugin-3.3.jar | |
[INFO] Plugin Dependency Resolved: maven-reporting-exec-1.1.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-model-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-settings-builder-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-archiver-2.4.2.jar | |
[INFO] Plugin Dependency Resolved: doxia-sink-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-logging-api-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-core-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xhtml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-apt-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-xdoc-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-fml-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-module-markdown-1.4.jar | |
[INFO] Plugin Dependency Resolved: servlet-api-2.5.jar | |
[INFO] Plugin Dependency Resolved: doxia-decoration-model-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-site-renderer-1.4.jar | |
[INFO] Plugin Dependency Resolved: doxia-integration-tools-1.5.jar | |
[INFO] Plugin Dependency Resolved: wagon-provider-api-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-archiver-1.0.jar | |
[INFO] Plugin Dependency Resolved: plexus-i18n-1.0-beta-7.jar | |
[INFO] Plugin Dependency Resolved: velocity-1.5.jar | |
[INFO] Plugin Dependency Resolved: plexus-velocity-1.1.8.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-1.5.10.jar | |
[INFO] Plugin Dependency Resolved: jetty-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: jetty-util-6.1.25.jar | |
[INFO] Plugin Dependency Resolved: commons-lang-2.5.jar | |
[INFO] Plugin Dependency Resolved: commons-io-1.4.jar | |
[INFO] Plugin Resolved: maven-failsafe-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-surefire-plugin-3.0.0-M5.jar | |
[INFO] Plugin Dependency Resolved: maven-surefire-common-3.0.0-M5.jar | |
[INFO] Plugin Resolved: maven-compiler-plugin-3.8.1.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-core-3.0.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-incremental-1.1.jar | |
[INFO] Plugin Dependency Resolved: plexus-java-0.9.10.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-api-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-manager-2.8.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-compiler-javac-2.8.4.jar | |
[INFO] Plugin Resolved: maven-install-plugin-2.5.2.jar | |
[INFO] Plugin Dependency Resolved: maven-plugin-api-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-project-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-model-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-manager-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: maven-artifact-2.2.1.jar | |
[INFO] Plugin Dependency Resolved: commons-codec-1.6.jar | |
[INFO] Plugin Dependency Resolved: maven-shared-utils-0.4.jar | |
[INFO] Plugin Dependency Resolved: plexus-utils-3.0.15.jar | |
[INFO] | |
[INFO] <<< maven-dependency-plugin:2.8:go-offline (default-cli) < :resolve-plugins @ test-coverage <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-dependency-plugin:2.8:go-offline (default-cli) @ test-coverage --- | |
[INFO] Resolved: api-0.16.5.jar | |
[INFO] Resolved: serialisation-39cb1fd.jar | |
[INFO] Resolved: building-39cb1fd.jar | |
[INFO] Resolved: org.everit.json.schema-1.12.1.jar | |
[INFO] Resolved: commons-validator-1.6.jar | |
[INFO] Resolved: commons-digester-1.8.1.jar | |
[INFO] Resolved: commons-collections-3.2.2.jar | |
[INFO] Resolved: handy-uri-templates-2.1.8.jar | |
[INFO] Resolved: re2j-1.3.jar | |
[INFO] Resolved: jaxb-api-2.3.1.jar | |
[INFO] Resolved: javax.activation-api-1.2.0.jar | |
[INFO] Resolved: guava-29.0-jre.jar | |
[INFO] Resolved: failureaccess-1.0.1.jar | |
[INFO] Resolved: listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar | |
[INFO] Resolved: jsr305-3.0.2.jar | |
[INFO] Resolved: error_prone_annotations-2.3.4.jar | |
[INFO] Resolved: j2objc-annotations-1.3.jar | |
[INFO] Resolved: json-20140107.jar | |
[INFO] Resolved: slf4j-api-1.7.30.jar | |
[INFO] Resolved: jackson-databind-2.11.3.jar | |
[INFO] Resolved: util-39cb1fd.jar | |
[INFO] Resolved: classgraph-4.8.98.jar | |
[INFO] Resolved: response-dto-39cb1fd.jar | |
[INFO] Resolved: jackson-dataformat-xml-2.11.3.jar | |
[INFO] Resolved: jackson-core-2.11.3.jar | |
[INFO] Resolved: jackson-module-jaxb-annotations-2.11.3.jar | |
[INFO] Resolved: stax2-api-4.2.1.jar | |
[INFO] Resolved: woodstox-core-6.2.1.jar | |
[INFO] Resolved: jackson-datatype-jsr310-2.9.10.jar | |
[INFO] Resolved: archie-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: aom-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: kryo-shaded-4.0.2.jar | |
[INFO] Resolved: minlog-1.3.0.jar | |
[INFO] Resolved: java-semver-0.9.0.jar | |
[INFO] Resolved: jaxb-core-2.3.0.1.jar | |
[INFO] Resolved: activation-1.1.1.jar | |
[INFO] Resolved: commons-text-1.9.jar | |
[INFO] Resolved: reflections-0.9.12.jar | |
[INFO] Resolved: jaxb-impl-2.3.3.jar | |
[INFO] Resolved: threeten-extra-1.5.0.jar | |
[INFO] Resolved: archie-all-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: archie-utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: base-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: bmm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: grammars-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: i18n-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: odin-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: openehr-terminology-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: path-queries-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: referencemodels-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: test-rm-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: tools-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jakarta.json-1.1.6-module.jar | |
[INFO] Resolved: justify-2.1.0.jar | |
[INFO] Resolved: jakarta.json-api-1.1.6.jar | |
[INFO] Resolved: icu4j-65.1.jar | |
[INFO] Resolved: utils-5a4a9442e5e2516aed5f25636ac236682aace7b9.jar | |
[INFO] Resolved: jackson-annotations-2.11.3.jar | |
[INFO] Resolved: swagger-annotations-1.6.2.jar | |
[INFO] Resolved: assertj-core-3.16.1.jar | |
[INFO] Resolved: web-template-39cb1fd.jar | |
[INFO] Resolved: terminology-39cb1fd.jar | |
[INFO] Resolved: application-0.16.5.jar | |
[INFO] Resolved: spring-boot-starter-web-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-json-2.3.5.RELEASE.jar | |
[INFO] Resolved: jackson-datatype-jdk8-2.11.3.jar | |
[INFO] Resolved: jackson-module-parameter-names-2.11.3.jar | |
[INFO] Resolved: spring-boot-starter-tomcat-2.3.5.RELEASE.jar | |
[INFO] Resolved: tomcat-embed-core-9.0.39.jar | |
[INFO] Resolved: tomcat-embed-websocket-9.0.39.jar | |
[INFO] Resolved: spring-web-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-webmvc-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-context-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-expression-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-actuator-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-actuator-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-actuator-2.3.5.RELEASE.jar | |
[INFO] Resolved: micrometer-core-1.5.6.jar | |
[INFO] Resolved: HdrHistogram-2.1.12.jar | |
[INFO] Resolved: LatencyUtils-2.0.3.jar | |
[INFO] Resolved: spring-boot-starter-security-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-aop-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-security-config-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-web-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-oauth2-resource-server-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-core-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-oauth2-resource-server-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-oauth2-core-5.3.5.RELEASE.jar | |
[INFO] Resolved: spring-security-oauth2-jose-5.3.5.RELEASE.jar | |
[INFO] Resolved: nimbus-jose-jwt-8.19.jar | |
[INFO] Resolved: jcip-annotations-1.0-1.jar | |
[INFO] Resolved: spring-boot-starter-data-jpa-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-aop-2.3.5.RELEASE.jar | |
[INFO] Resolved: aspectjweaver-1.9.6.jar | |
[INFO] Resolved: spring-boot-starter-jdbc-2.3.5.RELEASE.jar | |
[INFO] Resolved: HikariCP-3.4.5.jar | |
[INFO] Resolved: jakarta.transaction-api-1.3.3.jar | |
[INFO] Resolved: jakarta.persistence-api-2.2.3.jar | |
[INFO] Resolved: hibernate-core-5.4.22.Final.jar | |
[INFO] Resolved: jboss-logging-3.4.1.Final.jar | |
[INFO] Resolved: javassist-3.24.0-GA.jar | |
[INFO] Resolved: antlr-2.7.7.jar | |
[INFO] Resolved: jandex-2.1.3.Final.jar | |
[INFO] Resolved: dom4j-2.1.3.jar | |
[INFO] Resolved: hibernate-commons-annotations-5.1.0.Final.jar | |
[INFO] Resolved: spring-data-jpa-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-data-commons-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-orm-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-aspects-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-validation-2.3.5.RELEASE.jar | |
[INFO] Resolved: jakarta.el-3.0.3.jar | |
[INFO] Resolved: hibernate-validator-6.1.6.Final.jar | |
[INFO] Resolved: flyway-core-6.5.7.jar | |
[INFO] Resolved: springfox-swagger2-2.9.2.jar | |
[INFO] Resolved: springfox-spi-2.9.2.jar | |
[INFO] Resolved: springfox-core-2.9.2.jar | |
[INFO] Resolved: springfox-schema-2.9.2.jar | |
[INFO] Resolved: springfox-swagger-common-2.9.2.jar | |
[INFO] Resolved: springfox-spring-web-2.9.2.jar | |
[INFO] Resolved: classmate-1.5.1.jar | |
[INFO] Resolved: spring-plugin-core-1.2.0.RELEASE.jar | |
[INFO] Resolved: spring-plugin-metadata-1.2.0.RELEASE.jar | |
[INFO] Resolved: mapstruct-1.2.0.Final.jar | |
[INFO] Resolved: springfox-swagger-ui-2.9.2.jar | |
[INFO] Resolved: micrometer-registry-prometheus-1.6.1.jar | |
[INFO] Resolved: simpleclient_common-0.9.0.jar | |
[INFO] Resolved: simpleclient-0.9.0.jar | |
[INFO] Resolved: base-0.16.5.jar | |
[INFO] Resolved: jooq-pg-0.16.5.jar | |
[INFO] Resolved: jooq-3.12.3.jar | |
[INFO] Resolved: reactive-streams-1.0.3.jar | |
[INFO] Resolved: jooq-codegen-maven-3.12.3.jar | |
[INFO] Resolved: jooq-codegen-3.12.3.jar | |
[INFO] Resolved: jooq-meta-3.12.3.jar | |
[INFO] Resolved: maven-plugin-api-3.6.0.jar | |
[INFO] Resolved: maven-model-3.6.0.jar | |
[INFO] Resolved: maven-artifact-3.6.0.jar | |
[INFO] Resolved: org.eclipse.sisu.plexus-0.3.3.jar | |
[INFO] Resolved: cdi-api-1.0.jar | |
[INFO] Resolved: jsr250-api-1.0.jar | |
[INFO] Resolved: plexus-utils-3.1.0.jar | |
[INFO] Resolved: plexus-classworlds-2.5.2.jar | |
[INFO] Resolved: maven-core-3.6.0.jar | |
[INFO] Resolved: maven-settings-3.6.0.jar | |
[INFO] Resolved: maven-settings-builder-3.6.0.jar | |
[INFO] Resolved: plexus-interpolation-1.25.jar | |
[INFO] Resolved: plexus-sec-dispatcher-1.4.jar | |
[INFO] Resolved: plexus-cipher-1.4.jar | |
[INFO] Resolved: maven-builder-support-3.6.0.jar | |
[INFO] Resolved: maven-repository-metadata-3.6.0.jar | |
[INFO] Resolved: maven-model-builder-3.6.0.jar | |
[INFO] Resolved: maven-resolver-provider-3.6.0.jar | |
[INFO] Resolved: maven-resolver-impl-1.3.1.jar | |
[INFO] Resolved: maven-resolver-api-1.3.1.jar | |
[INFO] Resolved: maven-resolver-spi-1.3.1.jar | |
[INFO] Resolved: maven-resolver-util-1.3.1.jar | |
[INFO] Resolved: maven-shared-utils-3.2.1.jar | |
[INFO] Resolved: org.eclipse.sisu.inject-0.3.3.jar | |
[INFO] Resolved: guice-4.2.1-no_aop.jar | |
[INFO] Resolved: aopalliance-1.0.jar | |
[INFO] Resolved: javax.inject-1.jar | |
[INFO] Resolved: plexus-component-annotations-1.7.1.jar | |
[INFO] Resolved: rest-openehr-0.16.5.jar | |
[INFO] Resolved: swagger-models-1.6.2.jar | |
[INFO] Resolved: ipf-atna-spring-boot-starter-4.0.0.jar | |
[INFO] Resolved: jaxb-runtime-2.3.3.jar | |
[INFO] Resolved: txw2-2.3.3.jar | |
[INFO] Resolved: istack-commons-runtime-3.0.11.jar | |
[INFO] Resolved: jakarta.activation-1.2.2.jar | |
[INFO] Resolved: jakarta.validation-api-2.0.2.jar | |
[INFO] Resolved: ipf-commons-audit-4.0.0.jar | |
[INFO] Resolved: jdom2-2.0.6.jar | |
[INFO] Resolved: jcl-over-slf4j-1.7.30.jar | |
[INFO] Resolved: rest-ehr-scape-0.16.5.jar | |
[INFO] Resolved: commons-lang3-3.11.jar | |
[INFO] Resolved: gson-2.8.6.jar | |
[INFO] Resolved: service-0.16.5.jar | |
[INFO] Resolved: spring-jdbc-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-beans-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-tx-5.2.10.RELEASE.jar | |
[INFO] Resolved: opt-1.4-39cb1fd.jar | |
[INFO] Resolved: xmlbeans-3.1.0.jar | |
[INFO] Resolved: validation-39cb1fd.jar | |
[INFO] Resolved: fluent-hc-4.5.13.jar | |
[INFO] Resolved: httpclient-4.5.13.jar | |
[INFO] Resolved: httpcore-4.4.13.jar | |
[INFO] Resolved: commons-codec-1.14.jar | |
[INFO] Resolved: commons-logging-1.2.jar | |
[INFO] Resolved: postgresql-42.2.18.jar | |
[INFO] Resolved: checker-qual-3.5.0.jar | |
[INFO] Resolved: commons-collections4-4.1.jar | |
[INFO] Resolved: commons-io-2.6.jar | |
[INFO] Resolved: log4j-api-2.13.3.jar | |
[INFO] Resolved: log4j-core-2.13.3.jar | |
[INFO] Resolved: joda-time-2.10.6.jar | |
[INFO] Resolved: antlr4-runtime-4.9.1.jar | |
[INFO] Resolved: cache-api-1.1.1.jar | |
[INFO] Resolved: ehcache-3.8.1.jar | |
[INFO] Resolved: json-path-2.4.0.jar | |
[INFO] Resolved: json-smart-2.3.jar | |
[INFO] Resolved: accessors-smart-1.2.jar | |
[INFO] Resolved: asm-5.0.4.jar | |
[INFO] Resolved: javax.annotation-api-1.3.2.jar | |
[INFO] Resolved: spring-boot-starter-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-starter-logging-2.3.5.RELEASE.jar | |
[INFO] Resolved: logback-classic-1.2.3.jar | |
[INFO] Resolved: logback-core-1.2.3.jar | |
[INFO] Resolved: log4j-to-slf4j-2.13.3.jar | |
[INFO] Resolved: jul-to-slf4j-1.7.30.jar | |
[INFO] Resolved: jakarta.annotation-api-1.3.5.jar | |
[INFO] Resolved: snakeyaml-1.26.jar | |
[INFO] Resolved: spring-boot-test-2.3.5.RELEASE.jar | |
[INFO] Resolved: spring-boot-test-autoconfigure-2.3.5.RELEASE.jar | |
[INFO] Resolved: jakarta.xml.bind-api-2.3.3.jar | |
[INFO] Resolved: jakarta.activation-api-1.2.2.jar | |
[INFO] Resolved: hamcrest-2.2.jar | |
[INFO] Resolved: junit-jupiter-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-api-5.6.3.jar | |
[INFO] Resolved: opentest4j-1.2.0.jar | |
[INFO] Resolved: junit-platform-commons-1.6.3.jar | |
[INFO] Resolved: junit-jupiter-params-5.6.3.jar | |
[INFO] Resolved: junit-jupiter-engine-5.6.3.jar | |
[INFO] Resolved: junit-vintage-engine-5.6.3.jar | |
[INFO] Resolved: apiguardian-api-1.1.0.jar | |
[INFO] Resolved: junit-platform-engine-1.6.3.jar | |
[INFO] Resolved: junit-4.13.1.jar | |
[INFO] Resolved: mockito-core-3.3.3.jar | |
[INFO] Resolved: byte-buddy-1.10.17.jar | |
[INFO] Resolved: byte-buddy-agent-1.10.17.jar | |
[INFO] Resolved: objenesis-2.6.jar | |
[INFO] Resolved: mockito-junit-jupiter-3.3.3.jar | |
[INFO] Resolved: jsonassert-1.5.0.jar | |
[INFO] Resolved: android-json-0.0.20131108.vaadin1.jar | |
[INFO] Resolved: spring-core-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-jcl-5.2.10.RELEASE.jar | |
[INFO] Resolved: spring-test-5.2.10.RELEASE.jar | |
[INFO] Resolved: xmlunit-core-2.7.0.jar | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Summary for org.ehrbase.openehr:server 0.16.5: | |
[INFO] | |
[INFO] org.ehrbase.openehr:server ......................... SUCCESS [ 38.539 s] | |
[INFO] api ................................................ SUCCESS [ 24.068 s] | |
[INFO] base ............................................... SUCCESS [ 0.441 s] | |
[INFO] jooq-pq ............................................ SUCCESS [ 11.044 s] | |
[INFO] rest-openehr ....................................... SUCCESS [ 25.535 s] | |
[INFO] service ............................................ SUCCESS [ 8.065 s] | |
[INFO] rest-ehr-scape ..................................... SUCCESS [ 0.081 s] | |
[INFO] application ........................................ SUCCESS [ 17.578 s] | |
[INFO] test-coverage ...................................... SUCCESS [ 0.083 s] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] BUILD SUCCESS | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Total time: 02:15 min | |
[INFO] Finished at: 2021-07-07T12:30:13Z | |
[INFO] ------------------------------------------------------------------------ | |
Removing intermediate container df8434b091b5 | |
---> 8e3738ec718d | |
Step 33/71 : RUN su - postgres -c "pg_ctl -D ${PGDATA} -w start" && mvn compile && su - postgres -c "pg_ctl -D ${PGDATA} -w stop" | |
---> Running in 68b081586d62 | |
waiting for server to start....2021-07-07 12:30:16.197 UTC [11] LOG: starting PostgreSQL 13.3 on x86_64-pc-linux-musl, compiled by gcc (Alpine 10.3.1_git20210424) 10.3.1 20210424, 64-bit | |
2021-07-07 12:30:16.197 UTC [11] LOG: listening on IPv4 address "0.0.0.0", port 5432 | |
2021-07-07 12:30:16.197 UTC [11] LOG: listening on IPv6 address "::", port 5432 | |
2021-07-07 12:30:16.205 UTC [11] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" | |
2021-07-07 12:30:16.213 UTC [12] LOG: database system was shut down at 2021-07-07 12:26:59 UTC | |
2021-07-07 12:30:16.218 UTC [11] LOG: database system is ready to accept connections | |
done | |
server started | |
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Build Order: | |
[INFO] | |
[INFO] org.ehrbase.openehr:server [pom] | |
[INFO] api [jar] | |
[INFO] base [jar] | |
[INFO] jooq-pq [jar] | |
[INFO] rest-openehr [jar] | |
[INFO] service [jar] | |
[INFO] rest-ehr-scape [jar] | |
[INFO] application [jar] | |
[INFO] test-coverage [jar] | |
[INFO] | |
[INFO] ---------------------< org.ehrbase.openehr:server >--------------------- | |
[INFO] Building org.ehrbase.openehr:server 0.16.5 [1/9] | |
[INFO] --------------------------------[ pom ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ server --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/target/jacoco.exec | |
[INFO] | |
[INFO] ----------------------< org.ehrbase.openehr:api >----------------------- | |
[INFO] Building api 0.16.5 [2/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ api --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/api/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ api --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /api/src/main/resources | |
[INFO] skip non existing resourceDirectory /api/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ api --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 29 source files to /api/target/classes | |
[INFO] /api/src/main/java/org/ehrbase/api/service/TerminologyServer.java: /api/src/main/java/org/ehrbase/api/service/TerminologyServer.java uses unchecked or unsafe operations. | |
[INFO] /api/src/main/java/org/ehrbase/api/service/TerminologyServer.java: Recompile with -Xlint:unchecked for details. | |
[INFO] | |
[INFO] ----------------------< org.ehrbase.openehr:base >---------------------- | |
[INFO] Building base 0.16.5 [3/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ base --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/base/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ base --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 52 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ base --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 1 source file to /base/target/classes | |
[INFO] | |
[INFO] --------------------< org.ehrbase.openehr:jooq-pg >--------------------- | |
[INFO] Building jooq-pq 0.16.5 [4/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ jooq-pg --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/jooq-pq/target/jacoco.exec | |
[INFO] | |
[INFO] --- flyway-maven-plugin:6.5.7:migrate (default) @ jooq-pg --- | |
[INFO] Flyway Community Edition 6.5.7 by Redgate | |
[INFO] Database: jdbc:postgresql://localhost:5432/ehrbase (PostgreSQL 13.3) | |
[WARNING] Flyway upgrade recommended: PostgreSQL 13.3 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 12. | |
[INFO] Successfully validated 51 migrations (execution time 00:00.047s) | |
[INFO] Creating Schema History table "ehr"."flyway_schema_history" ... | |
[INFO] Current version of schema "ehr": << Empty Schema >> | |
[INFO] Migrating schema "ehr" to version 1 - empty | |
[INFO] Migrating schema "ehr" to version 2 - ehr | |
[INFO] Migrating schema "ehr" to version 3 - terminology | |
[INFO] Migrating schema "ehr" to version 4.1 - patient summary | |
[INFO] Migrating schema "ehr" to version 5 - raw json encoding | |
[INFO] Migrating schema "ehr" to version 6 - aql v1 2 0 | |
[INFO] Migrating schema "ehr" to version 7 - meta cache | |
[INFO] Migrating schema "ehr" to version 8 - folders support | |
[INFO] Migrating schema "ehr" to version 9 - audit | |
[INFO] Migrating schema "ehr" to version 9.1 - attestation and changes | |
[INFO] Migrating schema "ehr" to version 10 - stored query | |
[INFO] Migrating schema "ehr" to version 11 - raw json encoding new format | |
[INFO] Migrating schema "ehr" to version 12 - datatypes canonical json | |
[INFO] Migrating schema "ehr" to version 13 - template table | |
[INFO] Migrating schema "ehr" to version 14 - remove old template tables | |
[INFO] DB: drop cascades to constraint template_heading_xref_template_id_fkey on table template_heading_xref | |
[INFO] Migrating schema "ehr" to version 15 - fix plpgsql js functions | |
[INFO] Migrating schema "ehr" to version 16 - fix plpgsql js functions composition uid | |
[INFO] Migrating schema "ehr" to version 17 - make directory paths unique | |
[INFO] Migrating schema "ehr" to version 18 - new js canonical party identified | |
[INFO] Migrating schema "ehr" to version 19 - qualified party | |
[INFO] Migrating schema "ehr" to version 20 - raw json encoding fix | |
[INFO] Migrating schema "ehr" to version 21 - ehr status name archetype node id | |
[INFO] Migrating schema "ehr" to version 22 - js concept | |
[INFO] Migrating schema "ehr" to version 23 - ehr status history fix | |
[INFO] Migrating schema "ehr" to version 24 - typed element value | |
[INFO] Migrating schema "ehr" to version 25 - fix ehr status party self | |
[INFO] Migrating schema "ehr" to version 26 - archetype details | |
[INFO] Migrating schema "ehr" to version 27 - participations | |
[INFO] Migrating schema "ehr" to version 28 - contains refactoring | |
[INFO] Migrating schema "ehr" to version 29 - feeder audit | |
[INFO] Migrating schema "ehr" to version 30 - iso timestamp | |
[INFO] Migrating schema "ehr" to version 31 - canonical composer encoding | |
[INFO] Migrating schema "ehr" to version 32 - fix js canonical json | |
[INFO] Migrating schema "ehr" to version 33 - fix AQL time retrieval | |
[INFO] Migrating schema "ehr" to version 34 - admin delete templates | |
[INFO] DB: function ehr.admin_get_template_usage() does not exist, skipping | |
[INFO] DB: function ehr.admin_update_template() does not exist, skipping | |
[INFO] DB: function ehr.admin_delete_all_templates() does not exist, skipping | |
[INFO] DB: function ehr.admin_delete_template() does not exist, skipping | |
[INFO] Migrating schema "ehr" to version 35 - term mapping | |
[INFO] Migrating schema "ehr" to version 36 - participations function | |
[INFO] Migrating schema "ehr" to version 37 - canonical ehr | |
[INFO] Migrating schema "ehr" to version 38 - fix contribution history | |
[INFO] Migrating schema "ehr" to version 39 - admin delete ehr | |
[INFO] Migrating schema "ehr" to version 40 - get system version function | |
[INFO] DB: function ehr.get_system_version() does not exist, skipping | |
[INFO] Migrating schema "ehr" to version 41 - fct wrappers | |
[INFO] Migrating schema "ehr" to version 42 - drop contribution history | |
[INFO] Migrating schema "ehr" to version 43 - node name predicate fix | |
[INFO] Migrating schema "ehr" to version 44 - composition name | |
[INFO] Migrating schema "ehr" to version 45 - fix canonical comp | |
[INFO] Migrating schema "ehr" to version 46 - node name predicate fix | |
[INFO] Migrating schema "ehr" to version 47 - fix iso dv date time | |
[INFO] Migrating schema "ehr" to version 48 - fix canonical | |
[INFO] Migrating schema "ehr" to version 49 - deal with jsonb empty resultset | |
[INFO] Migrating schema "ehr" to version 50 - folder audit | |
[INFO] Successfully applied 51 migrations to schema "ehr" (execution time 00:02.093s) | |
[WARNING] Flyway upgrade recommended: PostgreSQL 13.3 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 12. | |
[INFO] | |
[INFO] --- jooq-codegen-maven:3.12.3:generate (default) @ jooq-pg --- | |
[INFO] No <inputCatalog/> was provided. Generating ALL available catalogs instead. | |
[INFO] License parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] Thank you for using jOOQ and jOOQ's code generator | |
[INFO] | |
[INFO] Database parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] dialect : POSTGRES | |
[INFO] URL : jdbc:postgresql://localhost:5432/ehrbase | |
[INFO] target dir : /jooq-pq/target/generated-sources | |
[INFO] target package : org.ehrbase.jooq.pg | |
[INFO] includes : [.*] | |
[INFO] excludes : [] | |
[INFO] includeExcludeColumns : false | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] JavaGenerator parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] annotations (generated): true | |
[INFO] annotations (JPA: any) : false | |
[INFO] annotations (JPA: version): | |
[INFO] annotations (validation): false | |
[INFO] comments : true | |
[INFO] comments on attributes : true | |
[INFO] comments on catalogs : true | |
[INFO] comments on columns : true | |
[INFO] comments on keys : true | |
[INFO] comments on links : true | |
[INFO] comments on packages : true | |
[INFO] comments on parameters : true | |
[INFO] comments on queues : true | |
[INFO] comments on routines : true | |
[INFO] comments on schemas : true | |
[INFO] comments on sequences : true | |
[INFO] comments on tables : true | |
[INFO] comments on udts : true | |
[INFO] daos : false | |
[INFO] deprecated code : true | |
[INFO] global references (any): true | |
[INFO] global references (catalogs): true | |
[INFO] global references (keys): true | |
[INFO] global references (links): true | |
[INFO] global references (queues): true | |
[INFO] global references (routines): true | |
[INFO] global references (schemas): true | |
[INFO] global references (sequences): true | |
[INFO] global references (tables): true | |
[INFO] global references (udts): true | |
[INFO] indexes : true | |
[INFO] instance fields : true | |
[INFO] interfaces : false | |
[INFO] interfaces (immutable) : false | |
[INFO] javadoc : true | |
[INFO] keys : true | |
[INFO] links : true | |
[INFO] pojos : false | |
[INFO] pojos (immutable) : false | |
[INFO] queues : true | |
[INFO] records : true | |
[INFO] routines : true | |
[INFO] sequences : true | |
[INFO] table-valued functions : true | |
[INFO] tables : true | |
[INFO] udts : true | |
[INFO] relations : true | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] Generation remarks | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] ---------------------------------------------------------- | |
[INFO] Generating catalogs : Total: 1 | |
WARNING: An illegal reflective access operation has occurred | |
WARNING: Illegal reflective access by org.jooq.tools.reflect.Reflect (file:/root/.m2/repository/org/jooq/jooq/3.12.3/jooq-3.12.3.jar) to constructor java.lang.invoke.MethodHandles$Lookup(java.lang.Class) | |
WARNING: Please consider reporting this to the maintainers of org.jooq.tools.reflect.Reflect | |
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations | |
WARNING: All illegal access operations will be denied in a future release | |
[INFO] | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@ @@ @@ @@@@@@@@@@ | |
@@@@@@@@@@ @@@@ @@ @@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @ @ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Thank you for using jOOQ 3.12.3 | |
[INFO] ARRAYs fetched : 0 (0 included, 0 excluded) | |
[INFO] Enums fetched : 6 (6 included, 0 excluded) | |
[INFO] No schema version is applied for catalog . Regenerating. | |
[INFO] | |
[INFO] Generating catalog : DefaultCatalog.java | |
[INFO] ========================================================== | |
[INFO] Generating schemata : Total: 1 | |
[INFO] No schema version is applied for schema ehr. Regenerating. | |
[INFO] Generating schema : Ehr.java | |
[INFO] ---------------------------------------------------------- | |
[INFO] Tables fetched : 60 (60 included, 0 excluded) | |
[INFO] UDTs fetched : 2 (2 included, 0 excluded) | |
[INFO] Sequences fetched : 0 (0 included, 0 excluded) | |
[INFO] Generating tables | |
[INFO] Adding foreign key : attestation__attestation_has_audit_fkey (ehr.attestation.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : attestation__attestation_reference_fkey (ehr.attestation.reference) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : attested_view__attested_view_attestation_id_fkey (ehr.attested_view.attestation_id) referencing attestation_pkey | |
[INFO] Adding foreign key : audit_details__audit_details_committer_fkey (ehr.audit_details.committer) referencing party_identified_pkey | |
[INFO] Adding foreign key : audit_details__audit_details_system_id_fkey (ehr.audit_details.system_id) referencing system_pkey | |
[INFO] Adding foreign key : compo_xref__compo_xref_child_uuid_fkey (ehr.compo_xref.child_uuid) referencing composition_pkey | |
[INFO] Adding foreign key : compo_xref__compo_xref_master_uuid_fkey (ehr.compo_xref.master_uuid) referencing composition_pkey | |
[INFO] Adding foreign key : composition__composition_attestation_ref_fkey (ehr.composition.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : composition__composition_composer_fkey (ehr.composition.composer) referencing party_identified_pkey | |
[INFO] Adding foreign key : composition__composition_ehr_id_fkey (ehr.composition.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : composition__composition_has_audit_fkey (ehr.composition.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : composition__composition_in_contribution_fkey (ehr.composition.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : composition__composition_language_fkey (ehr.composition.language) referencing language_pkey | |
[INFO] Adding foreign key : composition__composition_territory_fkey (ehr.composition.territory) referencing territory_pkey | |
[INFO] Adding foreign key : composition_history__composition_history_attestation_ref_fkey (ehr.composition_history.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : composition_history__composition_history_has_audit_fkey (ehr.composition_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : concept__concept_language_fkey (ehr.concept.language) referencing language_pkey | |
[INFO] Adding foreign key : contribution__contribution_ehr_id_fkey (ehr.contribution.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : contribution__contribution_has_audit_fkey (ehr.contribution.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : ehr__ehr_access_fkey (ehr.ehr.access) referencing access_pkey | |
[INFO] Adding foreign key : ehr__ehr_system_id_fkey (ehr.ehr.system_id) referencing system_pkey | |
[INFO] Adding foreign key : entry__entry_composition_id_fkey (ehr.entry.composition_id) referencing composition_pkey | |
[INFO] Adding foreign key : event_context__event_context_composition_id_fkey (ehr.event_context.composition_id) referencing composition_pkey | |
[INFO] Adding foreign key : event_context__event_context_facility_fkey (ehr.event_context.facility) referencing party_identified_pkey | |
[INFO] Adding foreign key : folder__folder_has_audit_fkey (ehr.folder.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : folder__folder_in_contribution_fkey (ehr.folder.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_hierarchy__folder_hierarchy_in_contribution_fk (ehr.folder_hierarchy.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_hierarchy__folder_hierarchy_parent_fk (ehr.folder_hierarchy.parent_folder) referencing folder_pk | |
[INFO] Adding foreign key : folder_history__folder_history_has_audit_fkey (ehr.folder_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_folder_fkey (ehr.folder_items.folder_id) referencing folder_pk | |
[INFO] Adding foreign key : folder_items__folder_items_in_contribution_fkey (ehr.folder_items.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_obj_ref_fkey (ehr.folder_items.in_contribution) referencing object_ref_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_obj_ref_fkey (ehr.folder_items.object_ref_id) referencing object_ref_pkey | |
[INFO] Adding foreign key : identifier__identifier_party_fkey (ehr.identifier.party) referencing party_identified_pkey | |
[INFO] Adding foreign key : object_ref__object_ref_in_contribution_fkey (ehr.object_ref.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : participation__participation_event_context_fkey (ehr.participation.event_context) referencing event_context_pkey | |
[INFO] Adding foreign key : participation__participation_performer_fkey (ehr.participation.performer) referencing party_identified_pkey | |
[INFO] Adding foreign key : status__status_attestation_ref_fkey (ehr.status.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : status__status_ehr_id_fkey (ehr.status.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : status__status_has_audit_fkey (ehr.status.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : status__status_in_contribution_fkey (ehr.status.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : status__status_party_fkey (ehr.status.party) referencing party_identified_pkey | |
[INFO] Adding foreign key : status_history__status_history_attestation_ref_fkey (ehr.status_history.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : status_history__status_history_has_audit_fkey (ehr.status_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : status_history__status_history_in_contribution_fkey (ehr.status_history.in_contribution) referencing contribution_pkey | |
[INFO] Synthetic primary keys : 0 (0 included, 0 excluded) | |
[INFO] Overriding primary keys : 33 (0 included, 33 excluded) | |
[INFO] Generating table : Access.java [input=access, output=access, pk=access_pkey] | |
[INFO] Embeddables fetched : 0 (0 included, 0 excluded) | |
[INFO] Indexes fetched : 55 (55 included, 0 excluded) | |
[INFO] Generating table : AdminDeleteAttestation.java [input=admin_delete_attestation, output=admin_delete_attestation, pk=N/A] | |
[INFO] Generating table : AdminDeleteAudit.java [input=admin_delete_audit, output=admin_delete_audit, pk=N/A] | |
[INFO] Generating table : AdminDeleteComposition.java [input=admin_delete_composition, output=admin_delete_composition, pk=N/A] | |
[INFO] Generating table : AdminDeleteCompositionHistory.java [input=admin_delete_composition_history, output=admin_delete_composition_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteContribution.java [input=admin_delete_contribution, output=admin_delete_contribution, pk=N/A] | |
[INFO] Generating table : AdminDeleteEhr.java [input=admin_delete_ehr, output=admin_delete_ehr, pk=N/A] | |
[INFO] Generating table : AdminDeleteEhrHistory.java [input=admin_delete_ehr_history, output=admin_delete_ehr_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteEventContextForCompo.java [input=admin_delete_event_context_for_compo, output=admin_delete_event_context_for_compo, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolder.java [input=admin_delete_folder, output=admin_delete_folder, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolderHistory.java [input=admin_delete_folder_history, output=admin_delete_folder_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolderObjRefHistory.java [input=admin_delete_folder_obj_ref_history, output=admin_delete_folder_obj_ref_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteStatus.java [input=admin_delete_status, output=admin_delete_status, pk=N/A] | |
[INFO] Generating table : AdminDeleteStatusHistory.java [input=admin_delete_status_history, output=admin_delete_status_history, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedCompositions.java [input=admin_get_linked_compositions, output=admin_get_linked_compositions, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedCompositionsForContrib.java [input=admin_get_linked_compositions_for_contrib, output=admin_get_linked_compositions_for_contrib, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedContributions.java [input=admin_get_linked_contributions, output=admin_get_linked_contributions, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedStatusForContrib.java [input=admin_get_linked_status_for_contrib, output=admin_get_linked_status_for_contrib, pk=N/A] | |
[INFO] Generating table : AdminGetTemplateUsage.java [input=admin_get_template_usage, output=admin_get_template_usage, pk=N/A] | |
[INFO] Generating table : Attestation.java [input=attestation, output=attestation, pk=attestation_pkey] | |
[INFO] Generating table : AttestationRef.java [input=attestation_ref, output=attestation_ref, pk=attestation_ref_pkey] | |
[INFO] Generating table : AttestedView.java [input=attested_view, output=attested_view, pk=attested_view_pkey] | |
[INFO] Generating table : AuditDetails.java [input=audit_details, output=audit_details, pk=audit_details_pkey] | |
[INFO] Generating table : CompExpand.java [input=comp_expand, output=comp_expand, pk=N/A] | |
[INFO] Generating table : CompoXref.java [input=compo_xref, output=compo_xref, pk=N/A] | |
[INFO] Generating table : Composition.java [input=composition, output=composition, pk=composition_pkey] | |
[INFO] Forcing type : ehr.composition.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : CompositionHistory.java [input=composition_history, output=composition_history, pk=N/A] | |
[INFO] Forcing type : ehr.composition_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Concept.java [input=concept, output=concept, pk=concept_pkey] | |
[INFO] Generating table : Contribution.java [input=contribution, output=contribution, pk=contribution_pkey] | |
[INFO] Generating table : Ehr.java [input=ehr, output=ehr, pk=ehr_pkey] | |
[INFO] Generating table : EhrStatus.java [input=ehr_status, output=ehr_status, pk=N/A] | |
[INFO] Generating table : Entry.java [input=entry, output=entry, pk=entry_pkey] | |
[INFO] Forcing type : ehr.entry.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EntryHistory.java [input=entry_history, output=entry_history, pk=N/A] | |
[INFO] Forcing type : ehr.entry_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EventContext.java [input=event_context, output=event_context, pk=event_context_pkey] | |
[INFO] Forcing type : ehr.event_context.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EventContextHistory.java [input=event_context_history, output=event_context_history, pk=N/A] | |
[INFO] Forcing type : ehr.event_context_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FlywaySchemaHistory.java [input=flyway_schema_history, output=flyway_schema_history, pk=flyway_schema_history_pk] | |
[INFO] Generating table : Folder.java [input=folder, output=folder, pk=folder_pk] | |
[INFO] Forcing type : ehr.folder.details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.folder.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHierarchy.java [input=folder_hierarchy, output=folder_hierarchy, pk=folder_hierarchy_pkey] | |
[INFO] Forcing type : ehr.folder_hierarchy.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHierarchyHistory.java [input=folder_hierarchy_history, output=folder_hierarchy_history, pk=folder_hierarchy_history_pkey] | |
[INFO] Forcing type : ehr.folder_hierarchy_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHistory.java [input=folder_history, output=folder_history, pk=folder_history_pkey] | |
[INFO] Forcing type : ehr.folder_history.details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.folder_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderItems.java [input=folder_items, output=folder_items, pk=folder_items_pkey] | |
[INFO] Forcing type : ehr.folder_items.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderItemsHistory.java [input=folder_items_history, output=folder_items_history, pk=folder_items_hist_pkey] | |
[INFO] Forcing type : ehr.folder_items_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Heading.java [input=heading, output=heading, pk=heading_pkey] | |
[INFO] Generating table : Identifier.java [input=identifier, output=identifier, pk=N/A] | |
[INFO] Generating table : JsonbArrayElements.java [input=jsonb_array_elements, output=jsonb_array_elements, pk=N/A] | |
[INFO] Generating table : Language.java [input=language, output=language, pk=language_pkey] | |
[INFO] Generating table : ObjectRef.java [input=object_ref, output=object_ref, pk=object_ref_pkey] | |
[INFO] Forcing type : ehr.object_ref.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : ObjectRefHistory.java [input=object_ref_history, output=object_ref_history, pk=object_ref_hist_pkey] | |
[INFO] Forcing type : ehr.object_ref_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Participation.java [input=participation, output=participation, pk=participation_pkey] | |
[INFO] Forcing type : ehr.participation.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : ParticipationHistory.java [input=participation_history, output=participation_history, pk=N/A] | |
[INFO] Forcing type : ehr.participation_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : PartyIdentified.java [input=party_identified, output=party_identified, pk=party_identified_pkey] | |
[INFO] Generating table : SessionLog.java [input=session_log, output=session_log, pk=session_log_pkey] | |
[INFO] Generating table : Status.java [input=status, output=status, pk=status_pkey] | |
[INFO] Forcing type : ehr.status.other_details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.status.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : StatusHistory.java [input=status_history, output=status_history, pk=N/A] | |
[INFO] Forcing type : ehr.status_history.other_details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.status_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : StoredQuery.java [input=stored_query, output=stored_query, pk=pk_qualified_name] | |
[INFO] Generating table : System.java [input=system, output=system, pk=system_pkey] | |
[INFO] Generating table : TemplateStore.java [input=template_store, output=template_store, pk=template_store_pkey] | |
[INFO] Generating table : TerminologyProvider.java [input=terminology_provider, output=terminology_provider, pk=terminology_provider_pkey] | |
[INFO] Generating table : Territory.java [input=territory, output=territory, pk=territory_pkey] | |
[INFO] Generating table : XjsonbArrayElements.java [input=xjsonb_array_elements, output=xjsonb_array_elements, pk=N/A] | |
[INFO] Tables generated : Total: 1.702s | |
[INFO] Generating table references | |
[INFO] Table refs generated : Total: 1.715s, +12.326ms | |
[INFO] Generating Keys | |
[INFO] Keys generated : Total: 1.729s, +13.987ms | |
[INFO] Generating Indexes | |
[INFO] Indexes generated : Total: 1.735s, +6.029ms | |
[INFO] Generating table records | |
[INFO] Generating record : AccessRecord.java | |
[INFO] Generating record : AdminDeleteAttestationRecord.java | |
[INFO] Generating record : AdminDeleteAuditRecord.java | |
[INFO] Generating record : AdminDeleteCompositionRecord.java | |
[INFO] Generating record : AdminDeleteCompositionHistoryRecord.java | |
[INFO] Generating record : AdminDeleteContributionRecord.java | |
[INFO] Generating record : AdminDeleteEhrRecord.java | |
[INFO] Generating record : AdminDeleteEhrHistoryRecord.java | |
[INFO] Generating record : AdminDeleteEventContextForCompoRecord.java | |
[INFO] Generating record : AdminDeleteFolderRecord.java | |
[INFO] Generating record : AdminDeleteFolderHistoryRecord.java | |
[INFO] Generating record : AdminDeleteFolderObjRefHistoryRecord.java | |
[INFO] Generating record : AdminDeleteStatusRecord.java | |
[INFO] Generating record : AdminDeleteStatusHistoryRecord.java | |
[INFO] Generating record : AdminGetLinkedCompositionsRecord.java | |
[INFO] Generating record : AdminGetLinkedCompositionsForContribRecord.java | |
[INFO] Generating record : AdminGetLinkedContributionsRecord.java | |
[INFO] Generating record : AdminGetLinkedStatusForContribRecord.java | |
[INFO] Generating record : AdminGetTemplateUsageRecord.java | |
[INFO] Generating record : AttestationRecord.java | |
[INFO] Generating record : AttestationRefRecord.java | |
[INFO] Generating record : AttestedViewRecord.java | |
[INFO] Generating record : AuditDetailsRecord.java | |
[INFO] Generating record : CompExpandRecord.java | |
[INFO] Generating record : CompoXrefRecord.java | |
[INFO] Generating record : CompositionRecord.java | |
[INFO] Generating record : CompositionHistoryRecord.java | |
[INFO] Generating record : ConceptRecord.java | |
[INFO] Generating record : ContributionRecord.java | |
[INFO] Generating record : EhrRecord.java | |
[INFO] Generating record : EhrStatusRecord.java | |
[INFO] Generating record : EntryRecord.java | |
[INFO] Generating record : EntryHistoryRecord.java | |
[INFO] Generating record : EventContextRecord.java | |
[INFO] Generating record : EventContextHistoryRecord.java | |
[INFO] Generating record : FlywaySchemaHistoryRecord.java | |
[INFO] Generating record : FolderRecord.java | |
[INFO] Generating record : FolderHierarchyRecord.java | |
[INFO] Generating record : FolderHierarchyHistoryRecord.java | |
[INFO] Generating record : FolderHistoryRecord.java | |
[INFO] Generating record : FolderItemsRecord.java | |
[INFO] Generating record : FolderItemsHistoryRecord.java | |
[INFO] Generating record : HeadingRecord.java | |
[INFO] Generating record : IdentifierRecord.java | |
[INFO] Generating record : JsonbArrayElementsRecord.java | |
[INFO] Generating record : LanguageRecord.java | |
[INFO] Generating record : ObjectRefRecord.java | |
[INFO] Generating record : ObjectRefHistoryRecord.java | |
[INFO] Generating record : ParticipationRecord.java | |
[INFO] Generating record : ParticipationHistoryRecord.java | |
[INFO] Generating record : PartyIdentifiedRecord.java | |
[INFO] Generating record : SessionLogRecord.java | |
[INFO] Generating record : StatusRecord.java | |
[INFO] Generating record : StatusHistoryRecord.java | |
[INFO] Generating record : StoredQueryRecord.java | |
[INFO] Generating record : SystemRecord.java | |
[INFO] Generating record : TemplateStoreRecord.java | |
[INFO] Generating record : TerminologyProviderRecord.java | |
[INFO] Generating record : TerritoryRecord.java | |
[INFO] Generating record : XjsonbArrayElementsRecord.java | |
[INFO] Table records generated : Total: 1.83s, +95.375ms | |
[INFO] Generating UDTs | |
[INFO] Generating UDT : CodePhrase.java | |
[INFO] Generating UDT : DvCodedText.java | |
[INFO] UDTs generated : Total: 1.841s, +10.539ms | |
[INFO] Generating UDT records | |
[INFO] Generating record : CodePhraseRecord.java | |
[INFO] Generating record : DvCodedTextRecord.java | |
[INFO] UDT records generated : Total: 1.845s, +4.071ms | |
[INFO] Generating UDT references | |
[INFO] UDT references generated : Total: 1.845s, +0.335ms | |
[INFO] Generating ENUMs | |
[INFO] Generating ENUM : ContributionChangeType.java | |
[INFO] Generating ENUM : ContributionDataType.java | |
[INFO] Generating ENUM : ContributionState.java | |
[INFO] Generating ENUM : EntryType.java | |
[INFO] Generating ENUM : PartyRefIdType.java | |
[INFO] Generating ENUM : PartyType.java | |
[INFO] Enums generated : Total: 1.847s, +2.134ms | |
[INFO] Domains fetched : 0 (0 included, 0 excluded) | |
[INFO] Routines fetched : 61 (61 included, 0 excluded) | |
[INFO] Generating routines and table-valued functions | |
[INFO] Missing name : Routine ehr.iso_timestamp holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_archetyped holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_archetyped holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_audit_details holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_code_phrase holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_code_phrase holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_composition holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_composition holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_concept holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_context holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_context_setting holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_contribution holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_contribution holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_coded_text holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_dv_coded_text holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_date_time holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_dv_date_time holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_text holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_ehr holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_ehr holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_ehr_status holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_identified holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_identified holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 3 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 4 | |
[INFO] Missing name : Routine ehr.js_party_self holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_self_identified holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_self_identified holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_typed_element_value holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 3 | |
[INFO] Generating routine : AdminDeleteAllTemplates.java | |
[INFO] Generating routine : AdminDeleteTemplate.java | |
[INFO] Generating routine : AdminUpdateTemplate.java | |
[INFO] Generating routine : AqlNodeNamePredicate.java | |
[INFO] Generating routine : CamelToSnake.java | |
[INFO] Generating routine : CompositionName.java | |
[INFO] Generating routine : CompositionUid.java | |
[INFO] Generating routine : FolderUid.java | |
[INFO] Generating routine : GetSystemVersion.java | |
[INFO] Generating routine : IsoTimestamp.java | |
[INFO] Generating routine : JsArchetypeDetails1.java | |
[INFO] Generating routine : JsArchetypeDetails2.java | |
[INFO] Generating routine : JsArchetyped.java | |
[INFO] Generating routine : JsAuditDetails.java | |
[INFO] Generating routine : JsCanonicalDvQuantity.java | |
[INFO] Generating routine : JsCanonicalGenericId.java | |
[INFO] Generating routine : JsCanonicalHierObjectId1.java | |
[INFO] Generating routine : JsCanonicalHierObjectId2.java | |
[INFO] Generating routine : JsCanonicalObjectId.java | |
[INFO] Generating routine : JsCanonicalObjectVersionId.java | |
[INFO] Generating routine : JsCanonicalParticipations.java | |
[INFO] Generating routine : JsCanonicalPartyIdentified.java | |
[INFO] Generating routine : JsCanonicalPartyRef.java | |
[INFO] Generating routine : JsCodePhrase1.java | |
[INFO] Generating routine : JsCodePhrase2.java | |
[INFO] Generating routine : JsComposition1.java | |
[INFO] Generating routine : JsComposition2.java | |
[INFO] Generating routine : JsConcept.java | |
[INFO] Generating routine : JsContext.java | |
[INFO] Generating routine : JsContextSetting.java | |
[INFO] Generating routine : JsContribution.java | |
[INFO] Generating routine : JsDvCodedText1.java | |
[INFO] Generating routine : JsDvCodedText2.java | |
[INFO] Generating routine : JsDvCodedTextInner1.java | |
[INFO] Generating routine : JsDvCodedTextInner2.java | |
[INFO] Generating routine : JsDvDateTime.java | |
[INFO] Generating routine : JsDvText.java | |
[INFO] Generating routine : JsEhr.java | |
[INFO] Generating routine : JsEhrStatus.java | |
[INFO] Generating routine : JsFolder.java | |
[INFO] Generating routine : JsObjectVersionId.java | |
[INFO] Generating routine : JsParticipations.java | |
[INFO] Generating routine : JsParty.java | |
[INFO] Generating routine : JsPartyIdentified.java | |
[INFO] Generating routine : JsPartyRef.java | |
[INFO] Generating routine : JsPartySelf.java | |
[INFO] Generating routine : JsPartySelfIdentified.java | |
[INFO] Generating routine : JsTermMappings.java | |
[INFO] Generating routine : JsTypedElementValue.java | |
[INFO] Generating routine : JsonEntryMigrate.java | |
[INFO] Generating routine : JsonPartyIdentified1.java | |
[INFO] Generating routine : JsonPartyIdentified2.java | |
[INFO] Generating routine : JsonPartyRelated.java | |
[INFO] Generating routine : JsonPartySelf.java | |
[INFO] Generating routine : JsonbExtractPath.java | |
[INFO] Generating routine : JsonbExtractPathText.java | |
[INFO] Generating routine : MapChangeTypeToCodestring.java | |
[INFO] Generating routine : MigrateConceptToDvCodedText.java | |
[INFO] Generating routine : MigrateParticipationFunction.java | |
[INFO] Generating routine : MigrateParticipationMode.java | |
[INFO] Generating routine : ObjectVersionId.java | |
[INFO] Routines generated : Total: 2.123s, +275.878ms | |
[INFO] Generation finished: ehr : Total: 2.123s, +0.122ms | |
[INFO] | |
[INFO] Removing excess files | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ jooq-pg --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /jooq-pq/src/main/resources | |
[INFO] skip non existing resourceDirectory /jooq-pq/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ jooq-pg --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 200 source files to /jooq-pq/target/classes | |
[INFO] | |
[INFO] ------------------< org.ehrbase.openehr:rest-openehr >------------------ | |
[INFO] Building rest-openehr 0.16.5 [5/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-openehr --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/rest-openehr/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ rest-openehr --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 7 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ rest-openehr --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 35 source files to /rest-openehr/target/classes | |
[INFO] /rest-openehr/src/main/java/org/ehrbase/rest/openehr/controller/OpenehrCompositionController.java: Some input files use unchecked or unsafe operations. | |
[INFO] /rest-openehr/src/main/java/org/ehrbase/rest/openehr/controller/OpenehrCompositionController.java: Recompile with -Xlint:unchecked for details. | |
[INFO] | |
[INFO] --------------------< org.ehrbase.openehr:service >--------------------- | |
[INFO] Building service 0.16.5 [6/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ service --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/service/target/jacoco.exec | |
[INFO] | |
[INFO] --- antlr4-maven-plugin:4.9.1:antlr4 (antlr) @ service --- | |
[INFO] No grammars to process | |
[INFO] ANTLR 4: Processing source directory /service/src/main/antlr4 | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ service --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 3 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ service --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 274 source files to /service/target/classes | |
[INFO] /service/src/main/java/org/ehrbase/service/EhrServiceImp.java: Some input files use or override a deprecated API. | |
[INFO] /service/src/main/java/org/ehrbase/service/EhrServiceImp.java: Recompile with -Xlint:deprecation for details. | |
[INFO] /service/src/main/java/org/ehrbase/aql/sql/QueryProcessor.java: Some input files use unchecked or unsafe operations. | |
[INFO] /service/src/main/java/org/ehrbase/aql/sql/QueryProcessor.java: Recompile with -Xlint:unchecked for details. | |
[INFO] | |
[INFO] -----------------< org.ehrbase.openehr:rest-ehr-scape >----------------- | |
[INFO] Building rest-ehr-scape 0.16.5 [7/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-ehr-scape --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/rest-ehr-scape/target/jacoco.exec | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ rest-ehr-scape --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 1 resource | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ rest-ehr-scape --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 18 source files to /rest-ehr-scape/target/classes | |
[INFO] /rest-ehr-scape/src/main/java/org/ehrbase/rest/ehrscape/controller/EhrController.java: /rest-ehr-scape/src/main/java/org/ehrbase/rest/ehrscape/controller/EhrController.java uses or overrides a deprecated API. | |
[INFO] /rest-ehr-scape/src/main/java/org/ehrbase/rest/ehrscape/controller/EhrController.java: Recompile with -Xlint:deprecation for details. | |
[INFO] /rest-ehr-scape/src/main/java/org/ehrbase/rest/ehrscape/controller/EhrController.java: /rest-ehr-scape/src/main/java/org/ehrbase/rest/ehrscape/controller/EhrController.java uses unchecked or unsafe operations. | |
[INFO] /rest-ehr-scape/src/main/java/org/ehrbase/rest/ehrscape/controller/EhrController.java: Recompile with -Xlint:unchecked for details. | |
[INFO] | |
[INFO] ------------------< org.ehrbase.openehr:application >------------------- | |
[INFO] Building application 0.16.5 [8/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ application --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/application/target/jacoco.exec | |
[INFO] | |
[INFO] --- spring-boot-maven-plugin:2.3.5.RELEASE:build-info (build-info) @ application --- | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ application --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 4 resources | |
[INFO] Copying 4 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ application --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 22 source files to /application/target/classes | |
[INFO] /application/src/main/java/org/ehrbase/application/config/SwaggerConfig.java: Some input files use or override a deprecated API. | |
[INFO] /application/src/main/java/org/ehrbase/application/config/SwaggerConfig.java: Recompile with -Xlint:deprecation for details. | |
[INFO] /application/src/main/java/org/ehrbase/application/config/security/OAuth2SecurityConfig.java: Some input files use unchecked or unsafe operations. | |
[INFO] /application/src/main/java/org/ehrbase/application/config/security/OAuth2SecurityConfig.java: Recompile with -Xlint:unchecked for details. | |
[INFO] | |
[INFO] -----------------< org.ehrbase.openehr:test-coverage >------------------ | |
[INFO] Building test-coverage 0.16.5 [9/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ test-coverage --- | |
[INFO] surefireArgLine set to -javaagent:/root/.m2/repository/org/jacoco/org.jacoco.agent/0.8.6/org.jacoco.agent-0.8.6-runtime.jar=destfile=/test-coverage/target/jacoco.exec,excludes=**/test/** | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ test-coverage --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /test-coverage/src/main/resources | |
[INFO] skip non existing resourceDirectory /test-coverage/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ test-coverage --- | |
[INFO] No sources to compile | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Summary for org.ehrbase.openehr:server 0.16.5: | |
[INFO] | |
[INFO] org.ehrbase.openehr:server ......................... SUCCESS [ 0.470 s] | |
[INFO] api ................................................ SUCCESS [ 1.012 s] | |
[INFO] base ............................................... SUCCESS [ 0.093 s] | |
[INFO] jooq-pq ............................................ SUCCESS [ 8.464 s] | |
[INFO] rest-openehr ....................................... SUCCESS [ 0.548 s] | |
[INFO] service ............................................ SUCCESS [ 2.105 s] | |
[INFO] rest-ehr-scape ..................................... SUCCESS [ 0.184 s] | |
[INFO] application ........................................ SUCCESS [ 0.462 s] | |
[INFO] test-coverage ...................................... SUCCESS [ 0.029 s] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] BUILD SUCCESS | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Total time: 13.553 s | |
[INFO] Finished at: 2021-07-07T12:30:30Z | |
[INFO] ------------------------------------------------------------------------ | |
waiting for server to shut down....2021-07-07 12:30:30.580 UTC [11] LOG: received fast shutdown request | |
2021-07-07 12:30:30.585 UTC [11] LOG: aborting any active transactions | |
2021-07-07 12:30:30.585 UTC [11] LOG: background worker "logical replication launcher" (PID 18) exited with exit code 1 | |
2021-07-07 12:30:30.586 UTC [13] LOG: shutting down | |
2021-07-07 12:30:30.837 UTC [11] LOG: database system is shut down | |
done | |
server stopped | |
Removing intermediate container 68b081586d62 | |
---> c975c0caa8cc | |
Step 34/71 : RUN ls -la | |
---> Running in dfea0099f977 | |
total 136 | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 . | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 .. | |
-rwxr-xr-x 1 root root 0 Jul 7 12:30 .dockerenv | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 api | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 application | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 base | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 bin | |
drwxr-xr-x 5 root root 340 Jul 7 12:30 dev | |
drwxr-xr-x 2 root root 4096 Jun 16 22:24 docker-entrypoint-initdb.d | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 etc | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 home | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 jooq-pq | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 lib | |
drwxr-xr-x 5 root root 4096 Jun 15 14:34 media | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 mnt | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 opt | |
-rw-r--r-- 1 root root 31225 Jun 7 18:07 pom.xml | |
drwxr-xr-x 2 root root 4096 Jul 7 12:26 postgres | |
dr-xr-xr-x 557 root root 0 Jul 7 12:30 proc | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 rest-ehr-scape | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 rest-openehr | |
drwx------ 1 root root 4096 Jul 7 12:27 root | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 run | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 sbin | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 service | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 srv | |
dr-xr-xr-x 13 root root 0 Jul 7 12:30 sys | |
drwxr-xr-x 2 root root 4096 Jul 7 12:27 test-coverage | |
drwxrwxrwt 1 root root 4096 Jul 7 12:27 tmp | |
drwxr-xr-x 1 root root 4096 Jul 7 12:27 usr | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 var | |
Removing intermediate container dfea0099f977 | |
---> 9acae4b0ff99 | |
Step 35/71 : RUN su - postgres -c "pg_ctl -D ${PGDATA} -w start" && mvn package -Dmaven.javadoc.skip=true -Djacoco.skip=true && su - postgres -c "pg_ctl -D ${PGDATA} -w stop" | |
---> Running in f7fd6e09e0fb | |
waiting for server to start....2021-07-07 12:30:32.479 UTC [11] LOG: starting PostgreSQL 13.3 on x86_64-pc-linux-musl, compiled by gcc (Alpine 10.3.1_git20210424) 10.3.1 20210424, 64-bit | |
2021-07-07 12:30:32.479 UTC [11] LOG: listening on IPv4 address "0.0.0.0", port 5432 | |
2021-07-07 12:30:32.479 UTC [11] LOG: listening on IPv6 address "::", port 5432 | |
2021-07-07 12:30:32.486 UTC [11] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432" | |
2021-07-07 12:30:32.495 UTC [12] LOG: database system was shut down at 2021-07-07 12:30:30 UTC | |
2021-07-07 12:30:32.501 UTC [11] LOG: database system is ready to accept connections | |
done | |
server started | |
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Build Order: | |
[INFO] | |
[INFO] org.ehrbase.openehr:server [pom] | |
[INFO] api [jar] | |
[INFO] base [jar] | |
[INFO] jooq-pq [jar] | |
[INFO] rest-openehr [jar] | |
[INFO] service [jar] | |
[INFO] rest-ehr-scape [jar] | |
[INFO] application [jar] | |
[INFO] test-coverage [jar] | |
[INFO] | |
[INFO] ---------------------< org.ehrbase.openehr:server >--------------------- | |
[INFO] Building org.ehrbase.openehr:server 0.16.5 [1/9] | |
[INFO] --------------------------------[ pom ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ server --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ server --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0-M5/maven-surefire-common-3.0.0-M5.pom (9.6 kB at 43 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.pom (3.2 kB at 82 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.pom (3.7 kB at 132 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.pom (3.9 kB at 135 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0-M4/surefire-3.0.0-M4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0-M4/surefire-3.0.0-M4.pom (27 kB at 726 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.pom (4.0 kB at 122 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.pom (4.8 kB at 147 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.pom (1.6 kB at 51 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.pom (2.2 kB at 50 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0-alpha-2/maven-3.0-alpha-2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0-alpha-2/maven-3.0-alpha-2.pom (21 kB at 648 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.pom (11 kB at 347 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.pom (4.6 kB at 159 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.0.5/plexus-languages-1.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.0.5/plexus-languages-1.0.5.pom (3.9 kB at 140 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.2/plexus-6.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.2/plexus-6.2.pom (24 kB at 736 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.2/asm-7.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.2/asm-7.2.pom (2.9 kB at 105 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0-M5/surefire-logger-api-3.0.0-M5.jar (14 kB at 426 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-toolchain/3.0-alpha-2/maven-toolchain-3.0-alpha-2.jar (36 kB at 539 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.11.0/maven-artifact-transfer-0.11.0.jar (128 kB at 1.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.5/plexus-java-1.0.5.jar (52 kB at 338 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.2/asm-7.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0-M5/surefire-extensions-spi-3.0.0-M5.jar (7.9 kB at 48 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0-M5/surefire-extensions-api-3.0.0-M5.jar (24 kB at 133 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.2/asm-7.2.jar (115 kB at 595 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0-M5/surefire-api-3.0.0-M5.jar (144 kB at 716 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0-M5/surefire-booter-3.0.0-M5.jar (106 kB at 516 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar (169 kB at 682 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0-M4/surefire-shared-utils-3.0.0-M4.jar (1.9 MB at 4.6 MB/s) | |
[INFO] No tests to run. | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ server >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ server --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ server <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ server --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.pom (4.5 kB at 159 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.pom (4.8 kB at 151 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 185 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom (4.5 kB at 162 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom (15 kB at 501 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom (1.9 kB at 68 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.pom (4.8 kB at 173 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar (58 kB at 1.7 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar (76 kB at 2.1 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar (109 kB at 2.3 MB/s) | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ server --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom (4.3 kB at 149 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (4.9 kB at 153 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom (4.8 kB at 172 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom (21 kB at 736 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom (4.5 kB at 168 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom (13 kB at 453 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.6/xz-1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.6/xz-1.6.pom (1.9 kB at 48 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/3.0.0/maven-invoker-3.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-invoker/3.0.0/maven-invoker-3.0.0.pom (5.0 kB at 132 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.0/maven-common-artifact-filters-3.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.0/maven-common-artifact-filters-3.0.0.pom (4.8 kB at 178 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom (5.1 kB at 189 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 1.4 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 573 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.1/maven-artifact-transfer-0.10.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.1/maven-artifact-transfer-0.10.1.pom (11 kB at 395 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom (4.8 kB at 179 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom (2.7 kB at 96 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom (12 kB at 437 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.7/doxia-sink-api-1.7.pom (1.5 kB at 57 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.7/doxia-1.7.pom (15 kB at 545 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.pom (1.5 kB at 57 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.7.4/doxia-site-renderer-1.7.4.pom (6.7 kB at 239 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.7.4/doxia-sitetools-1.7.4.pom (14 kB at 517 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.7/doxia-core-1.7.pom (4.1 kB at 150 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.pom (7.5 kB at 278 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.0.2/httpcomponents-client-4.0.2.pom (9.0 kB at 332 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.1/project-4.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.1/project-4.1.pom (16 kB at 607 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.pom (4.9 kB at 175 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.0.1/httpcomponents-core-4.0.1.pom (9.4 kB at 346 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/project/4.0/project-4.0.pom (13 kB at 452 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.pom (18 kB at 656 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/5/commons-parent-5.pom (16 kB at 573 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.pom (6.1 kB at 226 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.pom (3.0 kB at 113 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.pom (3.4 kB at 126 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.pom (3.0 kB at 112 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.pom (1.6 kB at 60 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.7/doxia-modules-1.7.pom (2.6 kB at 97 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 108 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 402 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 650 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 259 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 238 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 5.4 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 6.0 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 6.0 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 154 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.pom (9.0 kB at 334 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 5.5 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.pom (653 B at 24 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.pom (4.3 kB at 166 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-parent/1.3.8/struts-parent-1.3.8.pom (9.8 kB at 364 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-master/4/struts-master-4.pom (12 kB at 438 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/2/apache-2.pom (3.4 kB at 122 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.pom (145 B at 5.2 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.pom (3.1 kB at 114 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.pom (2.9 kB at 112 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 354 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom (1.8 kB at 65 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom (12 kB at 442 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom (2.0 kB at 75 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.pom (23 kB at 834 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom (65 kB at 1.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.8/httpclient-4.5.8.pom (6.6 kB at 245 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.8/httpcomponents-client-4.5.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.8/httpcomponents-client-4.5.8.pom (16 kB at 607 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.pom (5.2 kB at 192 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.11/httpcomponents-core-4.4.11.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.11/httpcomponents-core-4.4.11.pom (13 kB at 475 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M10/qdox-2.0-M10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M10/qdox-2.0-M10.pom (16 kB at 546 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.3/plexus-java-1.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.0.3/plexus-java-1.0.3.pom (4.8 kB at 108 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.0.3/plexus-languages-1.0.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.0.3/plexus-languages-1.0.3.pom (4.2 kB at 151 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom (2.9 kB at 65 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom (4.8 kB at 75 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom (4.5 kB at 120 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom (16 kB at 558 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/43/commons-parent-43.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/43/commons-parent-43.pom (70 kB at 2.2 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom (4.5 kB at 168 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-6/plexus-interactivity-api-1.0-alpha-6.pom (726 B at 11 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity/1.0-alpha-6/plexus-interactivity-1.0-alpha-6.pom (1.1 kB at 40 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom (2.4 kB at 93 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4/plexus-utils-1.4.pom (1.2 kB at 43 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar (26 kB at 555 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (165 kB at 3.1 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.7/doxia-logging-api-1.7.jar (12 kB at 184 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/xmlunit/xmlunit/1.5/xmlunit-1.5.jar (98 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.7.4/doxia-skin-model-1.7.4.jar (16 kB at 213 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.7/doxia-module-xhtml-1.7.jar (17 kB at 215 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.7.4/doxia-decoration-model-1.7.4.jar (61 kB at 730 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 73 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 1.9 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 1.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 2.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 2.8 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-validator/commons-validator/1.3.1/commons-validator-1.3.1.jar (139 kB at 822 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 529 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/sslext/sslext/1.2-0/sslext-1.2-0.jar (26 kB at 129 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 2.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/antlr/antlr/2.7.2/antlr-2.7.2.jar (358 kB at 1.5 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-taglib/1.3.8/struts-taglib-1.3.8.jar (252 kB at 1.0 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-core/1.3.8/struts-core-1.3.8.jar (329 kB at 1.3 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/struts/struts-tiles/1.3.8/struts-tiles-1.3.8.jar (120 kB at 404 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.11/httpcore-4.4.11.jar (327 kB at 1.1 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar (114 kB at 384 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.jar (560 kB at 1.8 MB/s) | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] ----------------------< org.ehrbase.openehr:api >----------------------- | |
[INFO] Building api 0.16.5 [2/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ api --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ api --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /api/src/main/resources | |
[INFO] skip non existing resourceDirectory /api/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ api --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 29 source files to /api/target/classes | |
[INFO] /api/src/main/java/org/ehrbase/api/service/TerminologyServer.java: /api/src/main/java/org/ehrbase/api/service/TerminologyServer.java uses unchecked or unsafe operations. | |
[INFO] /api/src/main/java/org/ehrbase/api/service/TerminologyServer.java: Recompile with -Xlint:unchecked for details. | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ api --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /api/src/test/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ api --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 1 source file to /api/target/test-classes | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ api --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ api --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/3.0.0-M5/surefire-junit-platform-3.0.0-M5.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/3.0.0-M5/surefire-junit-platform-3.0.0-M5.jar (23 kB at 862 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/3.0.0-M5/surefire-junit-platform-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/3.0.0-M5/surefire-junit-platform-3.0.0-M5.pom (6.7 kB at 258 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-providers/3.0.0-M5/surefire-providers-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-providers/3.0.0-M5/surefire-providers-3.0.0-M5.pom (2.5 kB at 101 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/common-java5/3.0.0-M5/common-java5-3.0.0-M5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/common-java5/3.0.0-M5/common-java5-3.0.0-M5.pom (2.6 kB at 105 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.pom (2.2 kB at 85 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.pom (1.2 kB at 45 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.pom (2.4 kB at 92 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.pom (2.0 kB at 78 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.pom (1.7 kB at 62 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.pom (2.4 kB at 92 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.pom (2.4 kB at 91 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.pom (2.2 kB at 85 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.28.2/mockito-core-2.28.2.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.28.2/mockito-core-2.28.2.pom (20 kB at 744 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.pom (10 kB at 382 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.9.10/byte-buddy-parent-1.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.9.10/byte-buddy-parent-1.9.10.pom (36 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.pom (6.0 kB at 232 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/powermock/powermock-reflect/2.0.5/powermock-reflect-2.0.5.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/powermock/powermock-reflect/2.0.5/powermock-reflect-2.0.5.pom (7.2 kB at 265 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.pom (10 kB at 379 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.1.9/assertj-parent-pom-2.1.9.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.1.9/assertj-parent-pom-2.1.9.pom (15 kB at 408 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.3.pom (820 B at 28 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/easytesting/fest-assert/1.4/fest-assert-1.4.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/easytesting/fest-assert/1.4/fest-assert-1.4.pom (2.4 kB at 88 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/easytesting/fest/1.0.8/fest-1.0.8.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/easytesting/fest/1.0.8/fest-1.0.8.pom (12 kB at 448 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/easytesting/fest-util/1.1.6/fest-util-1.1.6.pom (1.6 kB at 58 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/common-java5/3.0.0-M5/common-java5-3.0.0-M5.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.2/junit-platform-launcher-1.3.2.jar (95 kB at 3.1 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar (2.2 kB at 68 kB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/common-java5/3.0.0-M5/common-java5-3.0.0-M5.jar (16 kB at 492 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar (78 kB at 1.7 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar (138 kB at 2.5 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar (7.1 kB at 274 kB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/platform/junit-platform-launcher/1.6.3/junit-platform-launcher-1.6.3.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.6.3/junit-platform-launcher-1.6.3.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.6.3/junit-platform-launcher-1.6.3.jar (122 kB at 3.6 MB/s) | |
Downloading from jitpack.io: https://jitpack.io/org/junit/platform/junit-platform-launcher/1.6.3/junit-platform-launcher-1.6.3.pom | |
Downloading from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.6.3/junit-platform-launcher-1.6.3.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.6.3/junit-platform-launcher-1.6.3.pom (3.0 kB at 117 kB/s) | |
[INFO] | |
[INFO] ------------------------------------------------------- | |
[INFO] T E S T S | |
[INFO] ------------------------------------------------------- | |
[INFO] Running org.ehrbase.api.util.VersionUidHelperTest | |
[INFO] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 s - in org.ehrbase.api.util.VersionUidHelperTest | |
[INFO] | |
[INFO] Results: | |
[INFO] | |
[INFO] Tests run: 11, Failures: 0, Errors: 0, Skipped: 0 | |
[INFO] | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ api --- | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom (4.7 kB at 96 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom (4.2 kB at 148 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom (4.0 kB at 139 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom (1.7 kB at 64 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom (21 kB at 603 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/26/maven-parent-26.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/26/maven-parent-26.pom (40 kB at 1.3 MB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom (3.1 kB at 70 kB/s) | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar | |
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar (54 kB at 1.7 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar (41 kB at 1.2 MB/s) | |
Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar (285 kB at 4.5 MB/s) | |
[INFO] Building jar: /api/target/api-0.16.5.jar | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ api >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ api --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ api <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ api --- | |
[INFO] Building jar: /api/target/api-0.16.5-sources.jar | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ api --- | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] ----------------------< org.ehrbase.openehr:base >---------------------- | |
[INFO] Building base 0.16.5 [3/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ base --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ base --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 52 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ base --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ base --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /base/src/test/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ base --- | |
[INFO] No sources to compile | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ base --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ base --- | |
[INFO] No tests to run. | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ base --- | |
[INFO] Building jar: /base/target/base-0.16.5.jar | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ base >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ base --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ base <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ base --- | |
[INFO] Building jar: /base/target/base-0.16.5-sources.jar | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ base --- | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] --------------------< org.ehrbase.openehr:jooq-pg >--------------------- | |
[INFO] Building jooq-pq 0.16.5 [4/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ jooq-pg --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- flyway-maven-plugin:6.5.7:migrate (default) @ jooq-pg --- | |
[INFO] Flyway Community Edition 6.5.7 by Redgate | |
[INFO] Database: jdbc:postgresql://localhost:5432/ehrbase (PostgreSQL 13.3) | |
[WARNING] Flyway upgrade recommended: PostgreSQL 13.3 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 12. | |
[INFO] Successfully validated 51 migrations (execution time 00:00.080s) | |
[INFO] Current version of schema "ehr": 50 | |
[INFO] Schema "ehr" is up to date. No migration necessary. | |
[WARNING] Flyway upgrade recommended: PostgreSQL 13.3 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 12. | |
[INFO] | |
[INFO] --- jooq-codegen-maven:3.12.3:generate (default) @ jooq-pg --- | |
[INFO] No <inputCatalog/> was provided. Generating ALL available catalogs instead. | |
[INFO] License parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] Thank you for using jOOQ and jOOQ's code generator | |
[INFO] | |
[INFO] Database parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] dialect : POSTGRES | |
[INFO] URL : jdbc:postgresql://localhost:5432/ehrbase | |
[INFO] target dir : /jooq-pq/target/generated-sources | |
[INFO] target package : org.ehrbase.jooq.pg | |
[INFO] includes : [.*] | |
[INFO] excludes : [] | |
[INFO] includeExcludeColumns : false | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] JavaGenerator parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] annotations (generated): true | |
[INFO] annotations (JPA: any) : false | |
[INFO] annotations (JPA: version): | |
[INFO] annotations (validation): false | |
[INFO] comments : true | |
[INFO] comments on attributes : true | |
[INFO] comments on catalogs : true | |
[INFO] comments on columns : true | |
[INFO] comments on keys : true | |
[INFO] comments on links : true | |
[INFO] comments on packages : true | |
[INFO] comments on parameters : true | |
[INFO] comments on queues : true | |
[INFO] comments on routines : true | |
[INFO] comments on schemas : true | |
[INFO] comments on sequences : true | |
[INFO] comments on tables : true | |
[INFO] comments on udts : true | |
[INFO] daos : false | |
[INFO] deprecated code : true | |
[INFO] global references (any): true | |
[INFO] global references (catalogs): true | |
[INFO] global references (keys): true | |
[INFO] global references (links): true | |
[INFO] global references (queues): true | |
[INFO] global references (routines): true | |
[INFO] global references (schemas): true | |
[INFO] global references (sequences): true | |
[INFO] global references (tables): true | |
[INFO] global references (udts): true | |
[INFO] indexes : true | |
[INFO] instance fields : true | |
[INFO] interfaces : false | |
[INFO] interfaces (immutable) : false | |
[INFO] javadoc : true | |
[INFO] keys : true | |
[INFO] links : true | |
[INFO] pojos : false | |
[INFO] pojos (immutable) : false | |
[INFO] queues : true | |
[INFO] records : true | |
[INFO] routines : true | |
[INFO] sequences : true | |
[INFO] table-valued functions : true | |
[INFO] tables : true | |
[INFO] udts : true | |
[INFO] relations : true | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] Generation remarks | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] ---------------------------------------------------------- | |
[INFO] Generating catalogs : Total: 1 | |
WARNING: An illegal reflective access operation has occurred | |
WARNING: Illegal reflective access by org.jooq.tools.reflect.Reflect (file:/root/.m2/repository/org/jooq/jooq/3.12.3/jooq-3.12.3.jar) to constructor java.lang.invoke.MethodHandles$Lookup(java.lang.Class) | |
WARNING: Please consider reporting this to the maintainers of org.jooq.tools.reflect.Reflect | |
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations | |
WARNING: All illegal access operations will be denied in a future release | |
[INFO] | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@ @@ @@ @@@@@@@@@@ | |
@@@@@@@@@@ @@@@ @@ @@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@ @@@@ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @ @ @@@@@@@@@@ | |
@@@@@@@@@@ @@ @@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Thank you for using jOOQ 3.12.3 | |
[INFO] ARRAYs fetched : 0 (0 included, 0 excluded) | |
[INFO] Enums fetched : 6 (6 included, 0 excluded) | |
[INFO] No schema version is applied for catalog . Regenerating. | |
[INFO] | |
[INFO] Generating catalog : DefaultCatalog.java | |
[INFO] ========================================================== | |
[INFO] Generating schemata : Total: 1 | |
[INFO] No schema version is applied for schema ehr. Regenerating. | |
[INFO] Generating schema : Ehr.java | |
[INFO] ---------------------------------------------------------- | |
[INFO] Tables fetched : 60 (60 included, 0 excluded) | |
[INFO] UDTs fetched : 2 (2 included, 0 excluded) | |
[INFO] Sequences fetched : 0 (0 included, 0 excluded) | |
[INFO] Generating tables | |
[INFO] Adding foreign key : attestation__attestation_has_audit_fkey (ehr.attestation.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : attestation__attestation_reference_fkey (ehr.attestation.reference) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : attested_view__attested_view_attestation_id_fkey (ehr.attested_view.attestation_id) referencing attestation_pkey | |
[INFO] Adding foreign key : audit_details__audit_details_committer_fkey (ehr.audit_details.committer) referencing party_identified_pkey | |
[INFO] Adding foreign key : audit_details__audit_details_system_id_fkey (ehr.audit_details.system_id) referencing system_pkey | |
[INFO] Adding foreign key : compo_xref__compo_xref_child_uuid_fkey (ehr.compo_xref.child_uuid) referencing composition_pkey | |
[INFO] Adding foreign key : compo_xref__compo_xref_master_uuid_fkey (ehr.compo_xref.master_uuid) referencing composition_pkey | |
[INFO] Adding foreign key : composition__composition_attestation_ref_fkey (ehr.composition.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : composition__composition_composer_fkey (ehr.composition.composer) referencing party_identified_pkey | |
[INFO] Adding foreign key : composition__composition_ehr_id_fkey (ehr.composition.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : composition__composition_has_audit_fkey (ehr.composition.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : composition__composition_in_contribution_fkey (ehr.composition.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : composition__composition_language_fkey (ehr.composition.language) referencing language_pkey | |
[INFO] Adding foreign key : composition__composition_territory_fkey (ehr.composition.territory) referencing territory_pkey | |
[INFO] Adding foreign key : composition_history__composition_history_attestation_ref_fkey (ehr.composition_history.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : composition_history__composition_history_has_audit_fkey (ehr.composition_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : concept__concept_language_fkey (ehr.concept.language) referencing language_pkey | |
[INFO] Adding foreign key : contribution__contribution_ehr_id_fkey (ehr.contribution.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : contribution__contribution_has_audit_fkey (ehr.contribution.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : ehr__ehr_access_fkey (ehr.ehr.access) referencing access_pkey | |
[INFO] Adding foreign key : ehr__ehr_system_id_fkey (ehr.ehr.system_id) referencing system_pkey | |
[INFO] Adding foreign key : entry__entry_composition_id_fkey (ehr.entry.composition_id) referencing composition_pkey | |
[INFO] Adding foreign key : event_context__event_context_composition_id_fkey (ehr.event_context.composition_id) referencing composition_pkey | |
[INFO] Adding foreign key : event_context__event_context_facility_fkey (ehr.event_context.facility) referencing party_identified_pkey | |
[INFO] Adding foreign key : folder__folder_has_audit_fkey (ehr.folder.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : folder__folder_in_contribution_fkey (ehr.folder.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_hierarchy__folder_hierarchy_in_contribution_fk (ehr.folder_hierarchy.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_hierarchy__folder_hierarchy_parent_fk (ehr.folder_hierarchy.parent_folder) referencing folder_pk | |
[INFO] Adding foreign key : folder_history__folder_history_has_audit_fkey (ehr.folder_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_folder_fkey (ehr.folder_items.folder_id) referencing folder_pk | |
[INFO] Adding foreign key : folder_items__folder_items_in_contribution_fkey (ehr.folder_items.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_obj_ref_fkey (ehr.folder_items.in_contribution) referencing object_ref_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_obj_ref_fkey (ehr.folder_items.object_ref_id) referencing object_ref_pkey | |
[INFO] Adding foreign key : identifier__identifier_party_fkey (ehr.identifier.party) referencing party_identified_pkey | |
[INFO] Adding foreign key : object_ref__object_ref_in_contribution_fkey (ehr.object_ref.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : participation__participation_event_context_fkey (ehr.participation.event_context) referencing event_context_pkey | |
[INFO] Adding foreign key : participation__participation_performer_fkey (ehr.participation.performer) referencing party_identified_pkey | |
[INFO] Adding foreign key : status__status_attestation_ref_fkey (ehr.status.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : status__status_ehr_id_fkey (ehr.status.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : status__status_has_audit_fkey (ehr.status.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : status__status_in_contribution_fkey (ehr.status.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : status__status_party_fkey (ehr.status.party) referencing party_identified_pkey | |
[INFO] Adding foreign key : status_history__status_history_attestation_ref_fkey (ehr.status_history.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : status_history__status_history_has_audit_fkey (ehr.status_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : status_history__status_history_in_contribution_fkey (ehr.status_history.in_contribution) referencing contribution_pkey | |
[INFO] Synthetic primary keys : 0 (0 included, 0 excluded) | |
[INFO] Overriding primary keys : 33 (0 included, 33 excluded) | |
[INFO] Generating table : Access.java [input=access, output=access, pk=access_pkey] | |
[INFO] Embeddables fetched : 0 (0 included, 0 excluded) | |
[INFO] Indexes fetched : 55 (55 included, 0 excluded) | |
[INFO] Generating table : AdminDeleteAttestation.java [input=admin_delete_attestation, output=admin_delete_attestation, pk=N/A] | |
[INFO] Generating table : AdminDeleteAudit.java [input=admin_delete_audit, output=admin_delete_audit, pk=N/A] | |
[INFO] Generating table : AdminDeleteComposition.java [input=admin_delete_composition, output=admin_delete_composition, pk=N/A] | |
[INFO] Generating table : AdminDeleteCompositionHistory.java [input=admin_delete_composition_history, output=admin_delete_composition_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteContribution.java [input=admin_delete_contribution, output=admin_delete_contribution, pk=N/A] | |
[INFO] Generating table : AdminDeleteEhr.java [input=admin_delete_ehr, output=admin_delete_ehr, pk=N/A] | |
[INFO] Generating table : AdminDeleteEhrHistory.java [input=admin_delete_ehr_history, output=admin_delete_ehr_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteEventContextForCompo.java [input=admin_delete_event_context_for_compo, output=admin_delete_event_context_for_compo, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolder.java [input=admin_delete_folder, output=admin_delete_folder, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolderHistory.java [input=admin_delete_folder_history, output=admin_delete_folder_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolderObjRefHistory.java [input=admin_delete_folder_obj_ref_history, output=admin_delete_folder_obj_ref_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteStatus.java [input=admin_delete_status, output=admin_delete_status, pk=N/A] | |
[INFO] Generating table : AdminDeleteStatusHistory.java [input=admin_delete_status_history, output=admin_delete_status_history, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedCompositions.java [input=admin_get_linked_compositions, output=admin_get_linked_compositions, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedCompositionsForContrib.java [input=admin_get_linked_compositions_for_contrib, output=admin_get_linked_compositions_for_contrib, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedContributions.java [input=admin_get_linked_contributions, output=admin_get_linked_contributions, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedStatusForContrib.java [input=admin_get_linked_status_for_contrib, output=admin_get_linked_status_for_contrib, pk=N/A] | |
[INFO] Generating table : AdminGetTemplateUsage.java [input=admin_get_template_usage, output=admin_get_template_usage, pk=N/A] | |
[INFO] Generating table : Attestation.java [input=attestation, output=attestation, pk=attestation_pkey] | |
[INFO] Generating table : AttestationRef.java [input=attestation_ref, output=attestation_ref, pk=attestation_ref_pkey] | |
[INFO] Generating table : AttestedView.java [input=attested_view, output=attested_view, pk=attested_view_pkey] | |
[INFO] Generating table : AuditDetails.java [input=audit_details, output=audit_details, pk=audit_details_pkey] | |
[INFO] Generating table : CompExpand.java [input=comp_expand, output=comp_expand, pk=N/A] | |
[INFO] Generating table : CompoXref.java [input=compo_xref, output=compo_xref, pk=N/A] | |
[INFO] Generating table : Composition.java [input=composition, output=composition, pk=composition_pkey] | |
[INFO] Forcing type : ehr.composition.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : CompositionHistory.java [input=composition_history, output=composition_history, pk=N/A] | |
[INFO] Forcing type : ehr.composition_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Concept.java [input=concept, output=concept, pk=concept_pkey] | |
[INFO] Generating table : Contribution.java [input=contribution, output=contribution, pk=contribution_pkey] | |
[INFO] Generating table : Ehr.java [input=ehr, output=ehr, pk=ehr_pkey] | |
[INFO] Generating table : EhrStatus.java [input=ehr_status, output=ehr_status, pk=N/A] | |
[INFO] Generating table : Entry.java [input=entry, output=entry, pk=entry_pkey] | |
[INFO] Forcing type : ehr.entry.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EntryHistory.java [input=entry_history, output=entry_history, pk=N/A] | |
[INFO] Forcing type : ehr.entry_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EventContext.java [input=event_context, output=event_context, pk=event_context_pkey] | |
[INFO] Forcing type : ehr.event_context.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EventContextHistory.java [input=event_context_history, output=event_context_history, pk=N/A] | |
[INFO] Forcing type : ehr.event_context_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FlywaySchemaHistory.java [input=flyway_schema_history, output=flyway_schema_history, pk=flyway_schema_history_pk] | |
[INFO] Generating table : Folder.java [input=folder, output=folder, pk=folder_pk] | |
[INFO] Forcing type : ehr.folder.details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.folder.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHierarchy.java [input=folder_hierarchy, output=folder_hierarchy, pk=folder_hierarchy_pkey] | |
[INFO] Forcing type : ehr.folder_hierarchy.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHierarchyHistory.java [input=folder_hierarchy_history, output=folder_hierarchy_history, pk=folder_hierarchy_history_pkey] | |
[INFO] Forcing type : ehr.folder_hierarchy_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHistory.java [input=folder_history, output=folder_history, pk=folder_history_pkey] | |
[INFO] Forcing type : ehr.folder_history.details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.folder_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderItems.java [input=folder_items, output=folder_items, pk=folder_items_pkey] | |
[INFO] Forcing type : ehr.folder_items.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderItemsHistory.java [input=folder_items_history, output=folder_items_history, pk=folder_items_hist_pkey] | |
[INFO] Forcing type : ehr.folder_items_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Heading.java [input=heading, output=heading, pk=heading_pkey] | |
[INFO] Generating table : Identifier.java [input=identifier, output=identifier, pk=N/A] | |
[INFO] Generating table : JsonbArrayElements.java [input=jsonb_array_elements, output=jsonb_array_elements, pk=N/A] | |
[INFO] Generating table : Language.java [input=language, output=language, pk=language_pkey] | |
[INFO] Generating table : ObjectRef.java [input=object_ref, output=object_ref, pk=object_ref_pkey] | |
[INFO] Forcing type : ehr.object_ref.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : ObjectRefHistory.java [input=object_ref_history, output=object_ref_history, pk=object_ref_hist_pkey] | |
[INFO] Forcing type : ehr.object_ref_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Participation.java [input=participation, output=participation, pk=participation_pkey] | |
[INFO] Forcing type : ehr.participation.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : ParticipationHistory.java [input=participation_history, output=participation_history, pk=N/A] | |
[INFO] Forcing type : ehr.participation_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : PartyIdentified.java [input=party_identified, output=party_identified, pk=party_identified_pkey] | |
[INFO] Generating table : SessionLog.java [input=session_log, output=session_log, pk=session_log_pkey] | |
[INFO] Generating table : Status.java [input=status, output=status, pk=status_pkey] | |
[INFO] Forcing type : ehr.status.other_details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.status.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : StatusHistory.java [input=status_history, output=status_history, pk=N/A] | |
[INFO] Forcing type : ehr.status_history.other_details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.status_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : StoredQuery.java [input=stored_query, output=stored_query, pk=pk_qualified_name] | |
[INFO] Generating table : System.java [input=system, output=system, pk=system_pkey] | |
[INFO] Generating table : TemplateStore.java [input=template_store, output=template_store, pk=template_store_pkey] | |
[INFO] Generating table : TerminologyProvider.java [input=terminology_provider, output=terminology_provider, pk=terminology_provider_pkey] | |
[INFO] Generating table : Territory.java [input=territory, output=territory, pk=territory_pkey] | |
[INFO] Generating table : XjsonbArrayElements.java [input=xjsonb_array_elements, output=xjsonb_array_elements, pk=N/A] | |
[INFO] Tables generated : Total: 1.816s | |
[INFO] Generating table references | |
[INFO] Table refs generated : Total: 1.822s, +5.974ms | |
[INFO] Generating Keys | |
[INFO] Keys generated : Total: 1.829s, +7.572ms | |
[INFO] Generating Indexes | |
[INFO] Indexes generated : Total: 1.833s, +3.267ms | |
[INFO] Generating table records | |
[INFO] Generating record : AccessRecord.java | |
[INFO] Generating record : AdminDeleteAttestationRecord.java | |
[INFO] Generating record : AdminDeleteAuditRecord.java | |
[INFO] Generating record : AdminDeleteCompositionRecord.java | |
[INFO] Generating record : AdminDeleteCompositionHistoryRecord.java | |
[INFO] Generating record : AdminDeleteContributionRecord.java | |
[INFO] Generating record : AdminDeleteEhrRecord.java | |
[INFO] Generating record : AdminDeleteEhrHistoryRecord.java | |
[INFO] Generating record : AdminDeleteEventContextForCompoRecord.java | |
[INFO] Generating record : AdminDeleteFolderRecord.java | |
[INFO] Generating record : AdminDeleteFolderHistoryRecord.java | |
[INFO] Generating record : AdminDeleteFolderObjRefHistoryRecord.java | |
[INFO] Generating record : AdminDeleteStatusRecord.java | |
[INFO] Generating record : AdminDeleteStatusHistoryRecord.java | |
[INFO] Generating record : AdminGetLinkedCompositionsRecord.java | |
[INFO] Generating record : AdminGetLinkedCompositionsForContribRecord.java | |
[INFO] Generating record : AdminGetLinkedContributionsRecord.java | |
[INFO] Generating record : AdminGetLinkedStatusForContribRecord.java | |
[INFO] Generating record : AdminGetTemplateUsageRecord.java | |
[INFO] Generating record : AttestationRecord.java | |
[INFO] Generating record : AttestationRefRecord.java | |
[INFO] Generating record : AttestedViewRecord.java | |
[INFO] Generating record : AuditDetailsRecord.java | |
[INFO] Generating record : CompExpandRecord.java | |
[INFO] Generating record : CompoXrefRecord.java | |
[INFO] Generating record : CompositionRecord.java | |
[INFO] Generating record : CompositionHistoryRecord.java | |
[INFO] Generating record : ConceptRecord.java | |
[INFO] Generating record : ContributionRecord.java | |
[INFO] Generating record : EhrRecord.java | |
[INFO] Generating record : EhrStatusRecord.java | |
[INFO] Generating record : EntryRecord.java | |
[INFO] Generating record : EntryHistoryRecord.java | |
[INFO] Generating record : EventContextRecord.java | |
[INFO] Generating record : EventContextHistoryRecord.java | |
[INFO] Generating record : FlywaySchemaHistoryRecord.java | |
[INFO] Generating record : FolderRecord.java | |
[INFO] Generating record : FolderHierarchyRecord.java | |
[INFO] Generating record : FolderHierarchyHistoryRecord.java | |
[INFO] Generating record : FolderHistoryRecord.java | |
[INFO] Generating record : FolderItemsRecord.java | |
[INFO] Generating record : FolderItemsHistoryRecord.java | |
[INFO] Generating record : HeadingRecord.java | |
[INFO] Generating record : IdentifierRecord.java | |
[INFO] Generating record : JsonbArrayElementsRecord.java | |
[INFO] Generating record : LanguageRecord.java | |
[INFO] Generating record : ObjectRefRecord.java | |
[INFO] Generating record : ObjectRefHistoryRecord.java | |
[INFO] Generating record : ParticipationRecord.java | |
[INFO] Generating record : ParticipationHistoryRecord.java | |
[INFO] Generating record : PartyIdentifiedRecord.java | |
[INFO] Generating record : SessionLogRecord.java | |
[INFO] Generating record : StatusRecord.java | |
[INFO] Generating record : StatusHistoryRecord.java | |
[INFO] Generating record : StoredQueryRecord.java | |
[INFO] Generating record : SystemRecord.java | |
[INFO] Generating record : TemplateStoreRecord.java | |
[INFO] Generating record : TerminologyProviderRecord.java | |
[INFO] Generating record : TerritoryRecord.java | |
[INFO] Generating record : XjsonbArrayElementsRecord.java | |
[INFO] Table records generated : Total: 1.941s, +107.978ms | |
[INFO] Generating UDTs | |
[INFO] Generating UDT : CodePhrase.java | |
[INFO] Generating UDT : DvCodedText.java | |
[INFO] UDTs generated : Total: 1.952s, +11.263ms | |
[INFO] Generating UDT records | |
[INFO] Generating record : CodePhraseRecord.java | |
[INFO] Generating record : DvCodedTextRecord.java | |
[INFO] UDT records generated : Total: 1.957s, +4.856ms | |
[INFO] Generating UDT references | |
[INFO] UDT references generated : Total: 1.957s, +0.359ms | |
[INFO] Generating ENUMs | |
[INFO] Generating ENUM : ContributionChangeType.java | |
[INFO] Generating ENUM : ContributionDataType.java | |
[INFO] Generating ENUM : ContributionState.java | |
[INFO] Generating ENUM : EntryType.java | |
[INFO] Generating ENUM : PartyRefIdType.java | |
[INFO] Generating ENUM : PartyType.java | |
[INFO] Enums generated : Total: 1.959s, +2.248ms | |
[INFO] Domains fetched : 0 (0 included, 0 excluded) | |
[INFO] Routines fetched : 61 (61 included, 0 excluded) | |
[INFO] Generating routines and table-valued functions | |
[INFO] Missing name : Routine ehr.iso_timestamp holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_archetyped holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_archetyped holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_audit_details holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_code_phrase holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_code_phrase holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_composition holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_composition holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_concept holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_context holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_context_setting holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_contribution holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_contribution holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_coded_text holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_dv_coded_text holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_date_time holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_dv_date_time holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_text holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_ehr holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_ehr holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_ehr_status holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_identified holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_identified holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 3 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 4 | |
[INFO] Missing name : Routine ehr.js_party_self holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_self_identified holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_self_identified holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_typed_element_value holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 3 | |
[INFO] Generating routine : AdminDeleteAllTemplates.java | |
[INFO] Generating routine : AdminDeleteTemplate.java | |
[INFO] Generating routine : AdminUpdateTemplate.java | |
[INFO] Generating routine : AqlNodeNamePredicate.java | |
[INFO] Generating routine : CamelToSnake.java | |
[INFO] Generating routine : CompositionName.java | |
[INFO] Generating routine : CompositionUid.java | |
[INFO] Generating routine : FolderUid.java | |
[INFO] Generating routine : GetSystemVersion.java | |
[INFO] Generating routine : IsoTimestamp.java | |
[INFO] Generating routine : JsArchetypeDetails1.java | |
[INFO] Generating routine : JsArchetypeDetails2.java | |
[INFO] Generating routine : JsArchetyped.java | |
[INFO] Generating routine : JsAuditDetails.java | |
[INFO] Generating routine : JsCanonicalDvQuantity.java | |
[INFO] Generating routine : JsCanonicalGenericId.java | |
[INFO] Generating routine : JsCanonicalHierObjectId1.java | |
[INFO] Generating routine : JsCanonicalHierObjectId2.java | |
[INFO] Generating routine : JsCanonicalObjectId.java | |
[INFO] Generating routine : JsCanonicalObjectVersionId.java | |
[INFO] Generating routine : JsCanonicalParticipations.java | |
[INFO] Generating routine : JsCanonicalPartyIdentified.java | |
[INFO] Generating routine : JsCanonicalPartyRef.java | |
[INFO] Generating routine : JsCodePhrase1.java | |
[INFO] Generating routine : JsCodePhrase2.java | |
[INFO] Generating routine : JsComposition1.java | |
[INFO] Generating routine : JsComposition2.java | |
[INFO] Generating routine : JsConcept.java | |
[INFO] Generating routine : JsContext.java | |
[INFO] Generating routine : JsContextSetting.java | |
[INFO] Generating routine : JsContribution.java | |
[INFO] Generating routine : JsDvCodedText1.java | |
[INFO] Generating routine : JsDvCodedText2.java | |
[INFO] Generating routine : JsDvCodedTextInner1.java | |
[INFO] Generating routine : JsDvCodedTextInner2.java | |
[INFO] Generating routine : JsDvDateTime.java | |
[INFO] Generating routine : JsDvText.java | |
[INFO] Generating routine : JsEhr.java | |
[INFO] Generating routine : JsEhrStatus.java | |
[INFO] Generating routine : JsFolder.java | |
[INFO] Generating routine : JsObjectVersionId.java | |
[INFO] Generating routine : JsParticipations.java | |
[INFO] Generating routine : JsParty.java | |
[INFO] Generating routine : JsPartyIdentified.java | |
[INFO] Generating routine : JsPartyRef.java | |
[INFO] Generating routine : JsPartySelf.java | |
[INFO] Generating routine : JsPartySelfIdentified.java | |
[INFO] Generating routine : JsTermMappings.java | |
[INFO] Generating routine : JsTypedElementValue.java | |
[INFO] Generating routine : JsonEntryMigrate.java | |
[INFO] Generating routine : JsonPartyIdentified1.java | |
[INFO] Generating routine : JsonPartyIdentified2.java | |
[INFO] Generating routine : JsonPartyRelated.java | |
[INFO] Generating routine : JsonPartySelf.java | |
[INFO] Generating routine : JsonbExtractPath.java | |
[INFO] Generating routine : JsonbExtractPathText.java | |
[INFO] Generating routine : MapChangeTypeToCodestring.java | |
[INFO] Generating routine : MigrateConceptToDvCodedText.java | |
[INFO] Generating routine : MigrateParticipationFunction.java | |
[INFO] Generating routine : MigrateParticipationMode.java | |
[INFO] Generating routine : ObjectVersionId.java | |
[INFO] Routines generated : Total: 2.269s, +309.389ms | |
[INFO] Generation finished: ehr : Total: 2.269s, +0.128ms | |
[INFO] | |
[INFO] Removing excess files | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ jooq-pg --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /jooq-pq/src/main/resources | |
[INFO] skip non existing resourceDirectory /jooq-pq/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ jooq-pg --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ jooq-pg --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /jooq-pq/src/test/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ jooq-pg --- | |
[INFO] No sources to compile | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ jooq-pg --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ jooq-pg --- | |
[INFO] No tests to run. | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ jooq-pg --- | |
[INFO] Building jar: /jooq-pq/target/jooq-pg-0.16.5.jar | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ jooq-pg >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ jooq-pg --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] --- flyway-maven-plugin:6.5.7:migrate (default) @ jooq-pg --- | |
[INFO] Database: jdbc:postgresql://localhost:5432/ehrbase (PostgreSQL 13.3) | |
[WARNING] Flyway upgrade recommended: PostgreSQL 13.3 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 12. | |
[INFO] Successfully validated 51 migrations (execution time 00:00.008s) | |
[INFO] Current version of schema "ehr": 50 | |
[INFO] Schema "ehr" is up to date. No migration necessary. | |
[WARNING] Flyway upgrade recommended: PostgreSQL 13.3 is newer than this version of Flyway and support has not been tested. The latest supported version of PostgreSQL is 12. | |
[INFO] | |
[INFO] --- jooq-codegen-maven:3.12.3:generate (default) @ jooq-pg --- | |
[INFO] No <inputCatalog/> was provided. Generating ALL available catalogs instead. | |
[INFO] License parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] Thank you for using jOOQ and jOOQ's code generator | |
[INFO] | |
[INFO] Database parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] dialect : POSTGRES | |
[INFO] URL : jdbc:postgresql://localhost:5432/ehrbase | |
[INFO] target dir : /jooq-pq/target/generated-sources | |
[INFO] target package : org.ehrbase.jooq.pg | |
[INFO] includes : [.*] | |
[INFO] excludes : [] | |
[INFO] includeExcludeColumns : false | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] JavaGenerator parameters | |
[INFO] ---------------------------------------------------------- | |
[INFO] annotations (generated): true | |
[INFO] annotations (JPA: any) : false | |
[INFO] annotations (JPA: version): | |
[INFO] annotations (validation): false | |
[INFO] comments : true | |
[INFO] comments on attributes : true | |
[INFO] comments on catalogs : true | |
[INFO] comments on columns : true | |
[INFO] comments on keys : true | |
[INFO] comments on links : true | |
[INFO] comments on packages : true | |
[INFO] comments on parameters : true | |
[INFO] comments on queues : true | |
[INFO] comments on routines : true | |
[INFO] comments on schemas : true | |
[INFO] comments on sequences : true | |
[INFO] comments on tables : true | |
[INFO] comments on udts : true | |
[INFO] daos : false | |
[INFO] deprecated code : true | |
[INFO] global references (any): true | |
[INFO] global references (catalogs): true | |
[INFO] global references (keys): true | |
[INFO] global references (links): true | |
[INFO] global references (queues): true | |
[INFO] global references (routines): true | |
[INFO] global references (schemas): true | |
[INFO] global references (sequences): true | |
[INFO] global references (tables): true | |
[INFO] global references (udts): true | |
[INFO] indexes : true | |
[INFO] instance fields : true | |
[INFO] interfaces : false | |
[INFO] interfaces (immutable) : false | |
[INFO] javadoc : true | |
[INFO] keys : true | |
[INFO] links : true | |
[INFO] pojos : false | |
[INFO] pojos (immutable) : false | |
[INFO] queues : true | |
[INFO] records : true | |
[INFO] routines : true | |
[INFO] sequences : true | |
[INFO] table-valued functions : true | |
[INFO] tables : true | |
[INFO] udts : true | |
[INFO] relations : true | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] Generation remarks | |
[INFO] ---------------------------------------------------------- | |
[INFO] | |
[INFO] ---------------------------------------------------------- | |
[INFO] Generating catalogs : Total: 1 | |
[INFO] ARRAYs fetched : 0 (0 included, 0 excluded) | |
[INFO] Enums fetched : 6 (6 included, 0 excluded) | |
[INFO] No schema version is applied for catalog . Regenerating. | |
[INFO] | |
[INFO] Generating catalog : DefaultCatalog.java | |
[INFO] ========================================================== | |
[INFO] Generating schemata : Total: 1 | |
[INFO] No schema version is applied for schema ehr. Regenerating. | |
[INFO] Generating schema : Ehr.java | |
[INFO] ---------------------------------------------------------- | |
[INFO] Tables fetched : 60 (60 included, 0 excluded) | |
[INFO] UDTs fetched : 2 (2 included, 0 excluded) | |
[INFO] Sequences fetched : 0 (0 included, 0 excluded) | |
[INFO] Generating tables | |
[INFO] Adding foreign key : attestation__attestation_has_audit_fkey (ehr.attestation.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : attestation__attestation_reference_fkey (ehr.attestation.reference) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : attested_view__attested_view_attestation_id_fkey (ehr.attested_view.attestation_id) referencing attestation_pkey | |
[INFO] Adding foreign key : audit_details__audit_details_committer_fkey (ehr.audit_details.committer) referencing party_identified_pkey | |
[INFO] Adding foreign key : audit_details__audit_details_system_id_fkey (ehr.audit_details.system_id) referencing system_pkey | |
[INFO] Adding foreign key : compo_xref__compo_xref_child_uuid_fkey (ehr.compo_xref.child_uuid) referencing composition_pkey | |
[INFO] Adding foreign key : compo_xref__compo_xref_master_uuid_fkey (ehr.compo_xref.master_uuid) referencing composition_pkey | |
[INFO] Adding foreign key : composition__composition_attestation_ref_fkey (ehr.composition.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : composition__composition_composer_fkey (ehr.composition.composer) referencing party_identified_pkey | |
[INFO] Adding foreign key : composition__composition_ehr_id_fkey (ehr.composition.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : composition__composition_has_audit_fkey (ehr.composition.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : composition__composition_in_contribution_fkey (ehr.composition.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : composition__composition_language_fkey (ehr.composition.language) referencing language_pkey | |
[INFO] Adding foreign key : composition__composition_territory_fkey (ehr.composition.territory) referencing territory_pkey | |
[INFO] Adding foreign key : composition_history__composition_history_attestation_ref_fkey (ehr.composition_history.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : composition_history__composition_history_has_audit_fkey (ehr.composition_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : concept__concept_language_fkey (ehr.concept.language) referencing language_pkey | |
[INFO] Adding foreign key : contribution__contribution_ehr_id_fkey (ehr.contribution.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : contribution__contribution_has_audit_fkey (ehr.contribution.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : ehr__ehr_access_fkey (ehr.ehr.access) referencing access_pkey | |
[INFO] Adding foreign key : ehr__ehr_system_id_fkey (ehr.ehr.system_id) referencing system_pkey | |
[INFO] Adding foreign key : entry__entry_composition_id_fkey (ehr.entry.composition_id) referencing composition_pkey | |
[INFO] Adding foreign key : event_context__event_context_composition_id_fkey (ehr.event_context.composition_id) referencing composition_pkey | |
[INFO] Adding foreign key : event_context__event_context_facility_fkey (ehr.event_context.facility) referencing party_identified_pkey | |
[INFO] Adding foreign key : folder__folder_has_audit_fkey (ehr.folder.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : folder__folder_in_contribution_fkey (ehr.folder.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_hierarchy__folder_hierarchy_in_contribution_fk (ehr.folder_hierarchy.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_hierarchy__folder_hierarchy_parent_fk (ehr.folder_hierarchy.parent_folder) referencing folder_pk | |
[INFO] Adding foreign key : folder_history__folder_history_has_audit_fkey (ehr.folder_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_folder_fkey (ehr.folder_items.folder_id) referencing folder_pk | |
[INFO] Adding foreign key : folder_items__folder_items_in_contribution_fkey (ehr.folder_items.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_obj_ref_fkey (ehr.folder_items.in_contribution) referencing object_ref_pkey | |
[INFO] Adding foreign key : folder_items__folder_items_obj_ref_fkey (ehr.folder_items.object_ref_id) referencing object_ref_pkey | |
[INFO] Adding foreign key : identifier__identifier_party_fkey (ehr.identifier.party) referencing party_identified_pkey | |
[INFO] Adding foreign key : object_ref__object_ref_in_contribution_fkey (ehr.object_ref.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : participation__participation_event_context_fkey (ehr.participation.event_context) referencing event_context_pkey | |
[INFO] Adding foreign key : participation__participation_performer_fkey (ehr.participation.performer) referencing party_identified_pkey | |
[INFO] Adding foreign key : status__status_attestation_ref_fkey (ehr.status.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : status__status_ehr_id_fkey (ehr.status.ehr_id) referencing ehr_pkey | |
[INFO] Adding foreign key : status__status_has_audit_fkey (ehr.status.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : status__status_in_contribution_fkey (ehr.status.in_contribution) referencing contribution_pkey | |
[INFO] Adding foreign key : status__status_party_fkey (ehr.status.party) referencing party_identified_pkey | |
[INFO] Adding foreign key : status_history__status_history_attestation_ref_fkey (ehr.status_history.attestation_ref) referencing attestation_ref_pkey | |
[INFO] Adding foreign key : status_history__status_history_has_audit_fkey (ehr.status_history.has_audit) referencing audit_details_pkey | |
[INFO] Adding foreign key : status_history__status_history_in_contribution_fkey (ehr.status_history.in_contribution) referencing contribution_pkey | |
[INFO] Synthetic primary keys : 0 (0 included, 0 excluded) | |
[INFO] Overriding primary keys : 33 (0 included, 33 excluded) | |
[INFO] Generating table : Access.java [input=access, output=access, pk=access_pkey] | |
[INFO] Embeddables fetched : 0 (0 included, 0 excluded) | |
[INFO] Indexes fetched : 55 (55 included, 0 excluded) | |
[INFO] Generating table : AdminDeleteAttestation.java [input=admin_delete_attestation, output=admin_delete_attestation, pk=N/A] | |
[INFO] Generating table : AdminDeleteAudit.java [input=admin_delete_audit, output=admin_delete_audit, pk=N/A] | |
[INFO] Generating table : AdminDeleteComposition.java [input=admin_delete_composition, output=admin_delete_composition, pk=N/A] | |
[INFO] Generating table : AdminDeleteCompositionHistory.java [input=admin_delete_composition_history, output=admin_delete_composition_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteContribution.java [input=admin_delete_contribution, output=admin_delete_contribution, pk=N/A] | |
[INFO] Generating table : AdminDeleteEhr.java [input=admin_delete_ehr, output=admin_delete_ehr, pk=N/A] | |
[INFO] Generating table : AdminDeleteEhrHistory.java [input=admin_delete_ehr_history, output=admin_delete_ehr_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteEventContextForCompo.java [input=admin_delete_event_context_for_compo, output=admin_delete_event_context_for_compo, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolder.java [input=admin_delete_folder, output=admin_delete_folder, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolderHistory.java [input=admin_delete_folder_history, output=admin_delete_folder_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteFolderObjRefHistory.java [input=admin_delete_folder_obj_ref_history, output=admin_delete_folder_obj_ref_history, pk=N/A] | |
[INFO] Generating table : AdminDeleteStatus.java [input=admin_delete_status, output=admin_delete_status, pk=N/A] | |
[INFO] Generating table : AdminDeleteStatusHistory.java [input=admin_delete_status_history, output=admin_delete_status_history, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedCompositions.java [input=admin_get_linked_compositions, output=admin_get_linked_compositions, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedCompositionsForContrib.java [input=admin_get_linked_compositions_for_contrib, output=admin_get_linked_compositions_for_contrib, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedContributions.java [input=admin_get_linked_contributions, output=admin_get_linked_contributions, pk=N/A] | |
[INFO] Generating table : AdminGetLinkedStatusForContrib.java [input=admin_get_linked_status_for_contrib, output=admin_get_linked_status_for_contrib, pk=N/A] | |
[INFO] Generating table : AdminGetTemplateUsage.java [input=admin_get_template_usage, output=admin_get_template_usage, pk=N/A] | |
[INFO] Generating table : Attestation.java [input=attestation, output=attestation, pk=attestation_pkey] | |
[INFO] Generating table : AttestationRef.java [input=attestation_ref, output=attestation_ref, pk=attestation_ref_pkey] | |
[INFO] Generating table : AttestedView.java [input=attested_view, output=attested_view, pk=attested_view_pkey] | |
[INFO] Generating table : AuditDetails.java [input=audit_details, output=audit_details, pk=audit_details_pkey] | |
[INFO] Generating table : CompExpand.java [input=comp_expand, output=comp_expand, pk=N/A] | |
[INFO] Generating table : CompoXref.java [input=compo_xref, output=compo_xref, pk=N/A] | |
[INFO] Generating table : Composition.java [input=composition, output=composition, pk=composition_pkey] | |
[INFO] Forcing type : ehr.composition.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : CompositionHistory.java [input=composition_history, output=composition_history, pk=N/A] | |
[INFO] Forcing type : ehr.composition_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Concept.java [input=concept, output=concept, pk=concept_pkey] | |
[INFO] Generating table : Contribution.java [input=contribution, output=contribution, pk=contribution_pkey] | |
[INFO] Generating table : Ehr.java [input=ehr, output=ehr, pk=ehr_pkey] | |
[INFO] Generating table : EhrStatus.java [input=ehr_status, output=ehr_status, pk=N/A] | |
[INFO] Generating table : Entry.java [input=entry, output=entry, pk=entry_pkey] | |
[INFO] Forcing type : ehr.entry.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EntryHistory.java [input=entry_history, output=entry_history, pk=N/A] | |
[INFO] Forcing type : ehr.entry_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EventContext.java [input=event_context, output=event_context, pk=event_context_pkey] | |
[INFO] Forcing type : ehr.event_context.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : EventContextHistory.java [input=event_context_history, output=event_context_history, pk=N/A] | |
[INFO] Forcing type : ehr.event_context_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FlywaySchemaHistory.java [input=flyway_schema_history, output=flyway_schema_history, pk=flyway_schema_history_pk] | |
[INFO] Generating table : Folder.java [input=folder, output=folder, pk=folder_pk] | |
[INFO] Forcing type : ehr.folder.details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.folder.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHierarchy.java [input=folder_hierarchy, output=folder_hierarchy, pk=folder_hierarchy_pkey] | |
[INFO] Forcing type : ehr.folder_hierarchy.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHierarchyHistory.java [input=folder_hierarchy_history, output=folder_hierarchy_history, pk=folder_hierarchy_history_pkey] | |
[INFO] Forcing type : ehr.folder_hierarchy_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderHistory.java [input=folder_history, output=folder_history, pk=folder_history_pkey] | |
[INFO] Forcing type : ehr.folder_history.details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.folder_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderItems.java [input=folder_items, output=folder_items, pk=folder_items_pkey] | |
[INFO] Forcing type : ehr.folder_items.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : FolderItemsHistory.java [input=folder_items_history, output=folder_items_history, pk=folder_items_hist_pkey] | |
[INFO] Forcing type : ehr.folder_items_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Heading.java [input=heading, output=heading, pk=heading_pkey] | |
[INFO] Generating table : Identifier.java [input=identifier, output=identifier, pk=N/A] | |
[INFO] Generating table : JsonbArrayElements.java [input=jsonb_array_elements, output=jsonb_array_elements, pk=N/A] | |
[INFO] Generating table : Language.java [input=language, output=language, pk=language_pkey] | |
[INFO] Generating table : ObjectRef.java [input=object_ref, output=object_ref, pk=object_ref_pkey] | |
[INFO] Forcing type : ehr.object_ref.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : ObjectRefHistory.java [input=object_ref_history, output=object_ref_history, pk=object_ref_hist_pkey] | |
[INFO] Forcing type : ehr.object_ref_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : Participation.java [input=participation, output=participation, pk=participation_pkey] | |
[INFO] Forcing type : ehr.participation.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : ParticipationHistory.java [input=participation_history, output=participation_history, pk=N/A] | |
[INFO] Forcing type : ehr.participation_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : PartyIdentified.java [input=party_identified, output=party_identified, pk=party_identified_pkey] | |
[INFO] Generating table : SessionLog.java [input=session_log, output=session_log, pk=session_log_pkey] | |
[INFO] Generating table : Status.java [input=status, output=status, pk=status_pkey] | |
[INFO] Forcing type : ehr.status.other_details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.status.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : StatusHistory.java [input=status_history, output=status_history, pk=N/A] | |
[INFO] Forcing type : ehr.status_history.other_details to <userType>com.nedap.archie.rm.datastructures.ItemStructure</userType><binding>org.ehrbase.jooq.binding.OtherDetailsJsonbBinder</binding><includeExpression>^(other_)?details$</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Forcing type : ehr.status_history.sys_period to <userType>java.util.AbstractMap.SimpleEntry<java.time.OffsetDateTime, java.time.OffsetDateTime></userType><binding>org.ehrbase.jooq.binding.SysPeriodBinder</binding><includeExpression>sys_period</includeExpression><includeTypes>.*</includeTypes><nullability>ALL</nullability><objectType>ALL</objectType> | |
[INFO] Generating table : StoredQuery.java [input=stored_query, output=stored_query, pk=pk_qualified_name] | |
[INFO] Generating table : System.java [input=system, output=system, pk=system_pkey] | |
[INFO] Generating table : TemplateStore.java [input=template_store, output=template_store, pk=template_store_pkey] | |
[INFO] Generating table : TerminologyProvider.java [input=terminology_provider, output=terminology_provider, pk=terminology_provider_pkey] | |
[INFO] Generating table : Territory.java [input=territory, output=territory, pk=territory_pkey] | |
[INFO] Generating table : XjsonbArrayElements.java [input=xjsonb_array_elements, output=xjsonb_array_elements, pk=N/A] | |
[INFO] Tables generated : Total: 977.337ms | |
[INFO] Generating table references | |
[INFO] Table refs generated : Total: 980.898ms, +3.561ms | |
[INFO] Generating Keys | |
[INFO] Keys generated : Total: 985.556ms, +4.657ms | |
[INFO] Generating Indexes | |
[INFO] Indexes generated : Total: 987.779ms, +2.223ms | |
[INFO] Generating table records | |
[INFO] Generating record : AccessRecord.java | |
[INFO] Generating record : AdminDeleteAttestationRecord.java | |
[INFO] Generating record : AdminDeleteAuditRecord.java | |
[INFO] Generating record : AdminDeleteCompositionRecord.java | |
[INFO] Generating record : AdminDeleteCompositionHistoryRecord.java | |
[INFO] Generating record : AdminDeleteContributionRecord.java | |
[INFO] Generating record : AdminDeleteEhrRecord.java | |
[INFO] Generating record : AdminDeleteEhrHistoryRecord.java | |
[INFO] Generating record : AdminDeleteEventContextForCompoRecord.java | |
[INFO] Generating record : AdminDeleteFolderRecord.java | |
[INFO] Generating record : AdminDeleteFolderHistoryRecord.java | |
[INFO] Generating record : AdminDeleteFolderObjRefHistoryRecord.java | |
[INFO] Generating record : AdminDeleteStatusRecord.java | |
[INFO] Generating record : AdminDeleteStatusHistoryRecord.java | |
[INFO] Generating record : AdminGetLinkedCompositionsRecord.java | |
[INFO] Generating record : AdminGetLinkedCompositionsForContribRecord.java | |
[INFO] Generating record : AdminGetLinkedContributionsRecord.java | |
[INFO] Generating record : AdminGetLinkedStatusForContribRecord.java | |
[INFO] Generating record : AdminGetTemplateUsageRecord.java | |
[INFO] Generating record : AttestationRecord.java | |
[INFO] Generating record : AttestationRefRecord.java | |
[INFO] Generating record : AttestedViewRecord.java | |
[INFO] Generating record : AuditDetailsRecord.java | |
[INFO] Generating record : CompExpandRecord.java | |
[INFO] Generating record : CompoXrefRecord.java | |
[INFO] Generating record : CompositionRecord.java | |
[INFO] Generating record : CompositionHistoryRecord.java | |
[INFO] Generating record : ConceptRecord.java | |
[INFO] Generating record : ContributionRecord.java | |
[INFO] Generating record : EhrRecord.java | |
[INFO] Generating record : EhrStatusRecord.java | |
[INFO] Generating record : EntryRecord.java | |
[INFO] Generating record : EntryHistoryRecord.java | |
[INFO] Generating record : EventContextRecord.java | |
[INFO] Generating record : EventContextHistoryRecord.java | |
[INFO] Generating record : FlywaySchemaHistoryRecord.java | |
[INFO] Generating record : FolderRecord.java | |
[INFO] Generating record : FolderHierarchyRecord.java | |
[INFO] Generating record : FolderHierarchyHistoryRecord.java | |
[INFO] Generating record : FolderHistoryRecord.java | |
[INFO] Generating record : FolderItemsRecord.java | |
[INFO] Generating record : FolderItemsHistoryRecord.java | |
[INFO] Generating record : HeadingRecord.java | |
[INFO] Generating record : IdentifierRecord.java | |
[INFO] Generating record : JsonbArrayElementsRecord.java | |
[INFO] Generating record : LanguageRecord.java | |
[INFO] Generating record : ObjectRefRecord.java | |
[INFO] Generating record : ObjectRefHistoryRecord.java | |
[INFO] Generating record : ParticipationRecord.java | |
[INFO] Generating record : ParticipationHistoryRecord.java | |
[INFO] Generating record : PartyIdentifiedRecord.java | |
[INFO] Generating record : SessionLogRecord.java | |
[INFO] Generating record : StatusRecord.java | |
[INFO] Generating record : StatusHistoryRecord.java | |
[INFO] Generating record : StoredQueryRecord.java | |
[INFO] Generating record : SystemRecord.java | |
[INFO] Generating record : TemplateStoreRecord.java | |
[INFO] Generating record : TerminologyProviderRecord.java | |
[INFO] Generating record : TerritoryRecord.java | |
[INFO] Generating record : XjsonbArrayElementsRecord.java | |
[INFO] Table records generated : Total: 1.037s, +49.837ms | |
[INFO] Generating UDTs | |
[INFO] Generating UDT : CodePhrase.java | |
[INFO] Generating UDT : DvCodedText.java | |
[INFO] UDTs generated : Total: 1.045s, +8.292ms | |
[INFO] Generating UDT records | |
[INFO] Generating record : CodePhraseRecord.java | |
[INFO] Generating record : DvCodedTextRecord.java | |
[INFO] UDT records generated : Total: 1.047s, +1.887ms | |
[INFO] Generating UDT references | |
[INFO] UDT references generated : Total: 1.048s, +0.246ms | |
[INFO] Generating ENUMs | |
[INFO] Generating ENUM : ContributionChangeType.java | |
[INFO] Generating ENUM : ContributionDataType.java | |
[INFO] Generating ENUM : ContributionState.java | |
[INFO] Generating ENUM : EntryType.java | |
[INFO] Generating ENUM : PartyRefIdType.java | |
[INFO] Generating ENUM : PartyType.java | |
[INFO] Enums generated : Total: 1.049s, +1.367ms | |
[INFO] Domains fetched : 0 (0 included, 0 excluded) | |
[INFO] Routines fetched : 61 (61 included, 0 excluded) | |
[INFO] Generating routines and table-valued functions | |
[INFO] Missing name : Routine ehr.iso_timestamp holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_archetyped holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_archetyped holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_audit_details holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_code_phrase holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_code_phrase holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_composition holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_composition holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_concept holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_context holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_context_setting holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_contribution holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_contribution holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_coded_text holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_dv_coded_text holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_date_time holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_dv_date_time holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_dv_text holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_ehr holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_ehr holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_ehr_status holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_identified holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_identified holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 3 | |
[INFO] Missing name : Routine ehr.js_party_ref holds a parameter without a name at position 4 | |
[INFO] Missing name : Routine ehr.js_party_self holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_self_identified holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.js_party_self_identified holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.js_typed_element_value holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 1 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 2 | |
[INFO] Missing name : Routine ehr.object_version_id holds a parameter without a name at position 3 | |
[INFO] Generating routine : AdminDeleteAllTemplates.java | |
[INFO] Generating routine : AdminDeleteTemplate.java | |
[INFO] Generating routine : AdminUpdateTemplate.java | |
[INFO] Generating routine : AqlNodeNamePredicate.java | |
[INFO] Generating routine : CamelToSnake.java | |
[INFO] Generating routine : CompositionName.java | |
[INFO] Generating routine : CompositionUid.java | |
[INFO] Generating routine : FolderUid.java | |
[INFO] Generating routine : GetSystemVersion.java | |
[INFO] Generating routine : IsoTimestamp.java | |
[INFO] Generating routine : JsArchetypeDetails1.java | |
[INFO] Generating routine : JsArchetypeDetails2.java | |
[INFO] Generating routine : JsArchetyped.java | |
[INFO] Generating routine : JsAuditDetails.java | |
[INFO] Generating routine : JsCanonicalDvQuantity.java | |
[INFO] Generating routine : JsCanonicalGenericId.java | |
[INFO] Generating routine : JsCanonicalHierObjectId1.java | |
[INFO] Generating routine : JsCanonicalHierObjectId2.java | |
[INFO] Generating routine : JsCanonicalObjectId.java | |
[INFO] Generating routine : JsCanonicalObjectVersionId.java | |
[INFO] Generating routine : JsCanonicalParticipations.java | |
[INFO] Generating routine : JsCanonicalPartyIdentified.java | |
[INFO] Generating routine : JsCanonicalPartyRef.java | |
[INFO] Generating routine : JsCodePhrase1.java | |
[INFO] Generating routine : JsCodePhrase2.java | |
[INFO] Generating routine : JsComposition1.java | |
[INFO] Generating routine : JsComposition2.java | |
[INFO] Generating routine : JsConcept.java | |
[INFO] Generating routine : JsContext.java | |
[INFO] Generating routine : JsContextSetting.java | |
[INFO] Generating routine : JsContribution.java | |
[INFO] Generating routine : JsDvCodedText1.java | |
[INFO] Generating routine : JsDvCodedText2.java | |
[INFO] Generating routine : JsDvCodedTextInner1.java | |
[INFO] Generating routine : JsDvCodedTextInner2.java | |
[INFO] Generating routine : JsDvDateTime.java | |
[INFO] Generating routine : JsDvText.java | |
[INFO] Generating routine : JsEhr.java | |
[INFO] Generating routine : JsEhrStatus.java | |
[INFO] Generating routine : JsFolder.java | |
[INFO] Generating routine : JsObjectVersionId.java | |
[INFO] Generating routine : JsParticipations.java | |
[INFO] Generating routine : JsParty.java | |
[INFO] Generating routine : JsPartyIdentified.java | |
[INFO] Generating routine : JsPartyRef.java | |
[INFO] Generating routine : JsPartySelf.java | |
[INFO] Generating routine : JsPartySelfIdentified.java | |
[INFO] Generating routine : JsTermMappings.java | |
[INFO] Generating routine : JsTypedElementValue.java | |
[INFO] Generating routine : JsonEntryMigrate.java | |
[INFO] Generating routine : JsonPartyIdentified1.java | |
[INFO] Generating routine : JsonPartyIdentified2.java | |
[INFO] Generating routine : JsonPartyRelated.java | |
[INFO] Generating routine : JsonPartySelf.java | |
[INFO] Generating routine : JsonbExtractPath.java | |
[INFO] Generating routine : JsonbExtractPathText.java | |
[INFO] Generating routine : MapChangeTypeToCodestring.java | |
[INFO] Generating routine : MigrateConceptToDvCodedText.java | |
[INFO] Generating routine : MigrateParticipationFunction.java | |
[INFO] Generating routine : MigrateParticipationMode.java | |
[INFO] Generating routine : ObjectVersionId.java | |
[INFO] Routines generated : Total: 1.31s, +260.987ms | |
[INFO] Generation finished: ehr : Total: 1.31s, +0.113ms | |
[INFO] | |
[INFO] Removing excess files | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ jooq-pg <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ jooq-pg --- | |
[INFO] Building jar: /jooq-pq/target/jooq-pg-0.16.5-sources.jar | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ jooq-pg --- | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] ------------------< org.ehrbase.openehr:rest-openehr >------------------ | |
[INFO] Building rest-openehr 0.16.5 [5/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-openehr --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ rest-openehr --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 7 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ rest-openehr --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ rest-openehr --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /rest-openehr/src/test/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ rest-openehr --- | |
[INFO] No sources to compile | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ rest-openehr --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ rest-openehr --- | |
[INFO] No tests to run. | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ rest-openehr --- | |
[INFO] Building jar: /rest-openehr/target/rest-openehr-0.16.5.jar | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ rest-openehr >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-openehr --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ rest-openehr <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ rest-openehr --- | |
[INFO] Building jar: /rest-openehr/target/rest-openehr-0.16.5-sources.jar | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ rest-openehr --- | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] --------------------< org.ehrbase.openehr:service >--------------------- | |
[INFO] Building service 0.16.5 [6/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ service --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- antlr4-maven-plugin:4.9.1:antlr4 (antlr) @ service --- | |
[INFO] No grammars to process | |
[INFO] ANTLR 4: Processing source directory /service/src/main/antlr4 | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ service --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 3 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ service --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ service --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 109 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ service --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 137 source files to /service/target/test-classes | |
[INFO] /service/src/test/java/org/ehrbase/dao/access/jooq/FolderMockDataProvider.java: Some input files use or override a deprecated API. | |
[INFO] /service/src/test/java/org/ehrbase/dao/access/jooq/FolderMockDataProvider.java: Recompile with -Xlint:deprecation for details. | |
[INFO] /service/src/test/java/org/ehrbase/dao/access/jooq/FolderMockDataProvider.java: Some input files use unchecked or unsafe operations. | |
[INFO] /service/src/test/java/org/ehrbase/dao/access/jooq/FolderMockDataProvider.java: Recompile with -Xlint:unchecked for details. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ service --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ service --- | |
[INFO] | |
[INFO] ------------------------------------------------------- | |
[INFO] T E S T S | |
[INFO] ------------------------------------------------------- | |
[INFO] Running org.ehrbase.aql.containment.ContainmentTest | |
12:30:49,338 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback-test.xml] at [file:/service/target/test-classes/logback-test.xml] | |
12:30:49,374 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - debug attribute not set | |
12:30:49,376 |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to ERROR | |
12:30:49,376 |-ERROR in ch.qos.logback.core.joran.action.AppenderRefAction - Could not find an appender named [STDOUT]. Did you define it below instead of above in the configuration file? | |
12:30:49,376 |-ERROR in ch.qos.logback.core.joran.action.AppenderRefAction - See http://logback.qos.ch/codes.html#appender_order for more details. | |
12:30:49,376 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration. | |
12:30:49,376 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@25aca718 - Registering current configuration as safe fallback point | |
[INFO] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.452 s - in org.ehrbase.aql.containment.ContainmentTest | |
[INFO] Running org.ehrbase.aql.sql.binding.LimitBindingTest | |
[ERROR] WARNING: An illegal reflective access operation has occurred | |
[ERROR] WARNING: Illegal reflective access by org.jooq.tools.reflect.Reflect (file:/root/.m2/repository/org/jooq/jooq/3.12.3/jooq-3.12.3.jar) to constructor java.lang.invoke.MethodHandles$Lookup(java.lang.Class) | |
[ERROR] WARNING: Please consider reporting this to the maintainers of org.jooq.tools.reflect.Reflect | |
[ERROR] WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations | |
[ERROR] WARNING: All illegal access operations will be denied in a future release | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.077 s - in org.ehrbase.aql.sql.binding.LimitBindingTest | |
[INFO] Running org.ehrbase.aql.sql.binding.OrderByBinderTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 s - in org.ehrbase.aql.sql.binding.OrderByBinderTest | |
[INFO] Running org.ehrbase.aql.sql.PathResolverTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.235 s - in org.ehrbase.aql.sql.PathResolverTest | |
[INFO] Running org.ehrbase.aql.sql.VariableMultiMapTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.ehrbase.aql.sql.VariableMultiMapTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.JsonbEntryQueryTest | |
[INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.405 s - in org.ehrbase.aql.sql.queryimpl.JsonbEntryQueryTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.value_field.ISODateTimeTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in org.ehrbase.aql.sql.queryimpl.value_field.ISODateTimeTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.value_field.GenericJsonFieldTest | |
[WARNING] Tests run: 5, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.179 s - in org.ehrbase.aql.sql.queryimpl.value_field.GenericJsonFieldTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.value_field.FormattedFieldTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.145 s - in org.ehrbase.aql.sql.queryimpl.value_field.FormattedFieldTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.MultiFieldJsonbEntryQueryTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.273 s - in org.ehrbase.aql.sql.queryimpl.MultiFieldJsonbEntryQueryTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.attribute.GenericJsonPathTest | |
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.ehrbase.aql.sql.queryimpl.attribute.GenericJsonPathTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.attribute.TemporalWithTimeZoneTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.206 s - in org.ehrbase.aql.sql.queryimpl.attribute.TemporalWithTimeZoneTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.attribute.ehr.EhrResolverTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.ehrbase.aql.sql.queryimpl.attribute.ehr.EhrResolverTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.attribute.eventcontext.OtherContextPredicateTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.ehrbase.aql.sql.queryimpl.attribute.eventcontext.OtherContextPredicateTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.FunctionBasedNodePredicateCallTest | |
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 s - in org.ehrbase.aql.sql.queryimpl.FunctionBasedNodePredicateCallTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.NodePredicateFunctionTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in org.ehrbase.aql.sql.queryimpl.NodePredicateFunctionTest | |
[INFO] Running org.ehrbase.aql.sql.queryimpl.VariableAqlPathTest | |
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.ehrbase.aql.sql.queryimpl.VariableAqlPathTest | |
[INFO] Running org.ehrbase.aql.compiler.InvokeVisitorTest | |
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.255 s - in org.ehrbase.aql.compiler.InvokeVisitorTest | |
[INFO] Running org.ehrbase.aql.compiler.AqlExpressionTest | |
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.163 s - in org.ehrbase.aql.compiler.AqlExpressionTest | |
[INFO] Running org.ehrbase.aql.compiler.AqlExpressionWithParametersTest | |
java.lang.IllegalArgumentException: Could not substitute parameter in AQL expression: '$nameValue2' | |
[INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 s - in org.ehrbase.aql.compiler.AqlExpressionWithParametersTest | |
[INFO] Running org.ehrbase.aql.compiler.QueryCompilerPass2Test | |
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 s - in org.ehrbase.aql.compiler.QueryCompilerPass2Test | |
[INFO] Running org.ehrbase.aql.compiler.QueryCompilerPass1Test | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.144 s - in org.ehrbase.aql.compiler.QueryCompilerPass1Test | |
[INFO] Running org.ehrbase.aql.compiler.FhirTerminologyServerR4AdaptorImplTest | |
[WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 2, Time elapsed: 0.001 s - in org.ehrbase.aql.compiler.FhirTerminologyServerR4AdaptorImplTest | |
[INFO] Running org.ehrbase.aql.compiler.WhereVisitorTest | |
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 s - in org.ehrbase.aql.compiler.WhereVisitorTest | |
[INFO] Running org.ehrbase.aql.compiler.WhereClauseUtilTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.ehrbase.aql.compiler.WhereClauseUtilTest | |
[INFO] Running org.ehrbase.service.TerminologyServiceTest | |
[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.059 s - in org.ehrbase.service.TerminologyServiceTest | |
[INFO] Running org.ehrbase.service.FolderServiceImpTest | |
[WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 2, Time elapsed: 0 s - in org.ehrbase.service.FolderServiceImpTest | |
[INFO] Running org.ehrbase.service.ContributionServiceHelperTest | |
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.274 s - in org.ehrbase.service.ContributionServiceHelperTest | |
[INFO] Running org.ehrbase.service.RecordedDvCodedTextTest | |
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 s - in org.ehrbase.service.RecordedDvCodedTextTest | |
[INFO] Running org.ehrbase.service.KnowledgeCacheServiceTest | |
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.174 s - in org.ehrbase.service.KnowledgeCacheServiceTest | |
[INFO] Running org.ehrbase.dao.access.jooq.AqlQueryHandlerTest | |
[WARNING] Tests run: 1, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0 s - in org.ehrbase.dao.access.jooq.AqlQueryHandlerTest | |
[INFO] Running org.ehrbase.dao.access.jooq.party.PartyIdentifiersTest | |
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in org.ehrbase.dao.access.jooq.party.PartyIdentifiersTest | |
[INFO] Running org.ehrbase.dao.access.jooq.FolderAccessTest | |
[WARNING] Tests run: 8, Failures: 0, Errors: 0, Skipped: 6, Time elapsed: 0.071 s - in org.ehrbase.dao.access.jooq.FolderAccessTest | |
[INFO] Running org.ehrbase.dao.access.jooq.CompositionAccessTest | |
SQL2 is: SELECT MAX("EHR"."COMPOSITION"."SYS_TRANSACTION") AS "MOSTRECENTINTABLE" FROM "EHR"."COMPOSITION" WHERE "EHR"."COMPOSITION"."ID" = CAST(? AS UUID) | |
SELECT MAX is selected | |
SQL2 is: SELECT MAX("EHR"."COMPOSITION"."SYS_TRANSACTION") AS "MOSTRECENTINTABLE" FROM "EHR"."COMPOSITION" WHERE "EHR"."COMPOSITION"."ID" = CAST(? AS UUID) | |
SELECT MAX is selected | |
SQL2 is: SELECT MAX("EHR"."COMPOSITION"."SYS_TRANSACTION") AS "MOSTRECENTINTABLE" FROM "EHR"."COMPOSITION" WHERE "EHR"."COMPOSITION"."ID" = CAST(? AS UUID) | |
SELECT MAX is selected | |
SQL2 is: SELECT MAX("EHR"."COMPOSITION"."SYS_TRANSACTION") AS "MOSTRECENTINTABLE" FROM "EHR"."COMPOSITION" WHERE "EHR"."COMPOSITION"."ID" = CAST(? AS UUID) | |
SELECT MAX is selected | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034 s - in org.ehrbase.dao.access.jooq.CompositionAccessTest | |
[INFO] Running org.ehrbase.dao.access.jooq.FolderHistoryAccessTest | |
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.1 s - in org.ehrbase.dao.access.jooq.FolderHistoryAccessTest | |
[INFO] Running org.ehrbase.dao.access.jooq.StoredQueryAccessTest | |
[WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.007 s - in org.ehrbase.dao.access.jooq.StoredQueryAccessTest | |
[INFO] Running org.ehrbase.dao.access.util.FolderUtilsTest | |
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 s - in org.ehrbase.dao.access.util.FolderUtilsTest | |
[INFO] Running org.ehrbase.dao.access.util.StoredQueryQualifiedNameTest | |
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in org.ehrbase.dao.access.util.StoredQueryQualifiedNameTest | |
[INFO] | |
[INFO] Results: | |
[INFO] | |
[WARNING] Tests run: 116, Failures: 0, Errors: 0, Skipped: 13 | |
[INFO] | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ service --- | |
[INFO] Building jar: /service/target/service-0.16.5.jar | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ service >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ service --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] --- antlr4-maven-plugin:4.9.1:antlr4 (antlr) @ service --- | |
[INFO] No grammars to process | |
[INFO] ANTLR 4: Processing source directory /service/src/main/antlr4 | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ service <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ service --- | |
[INFO] Building jar: /service/target/service-0.16.5-sources.jar | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ service --- | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] -----------------< org.ehrbase.openehr:rest-ehr-scape >----------------- | |
[INFO] Building rest-ehr-scape 0.16.5 [7/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-ehr-scape --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ rest-ehr-scape --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 0 resource | |
[INFO] Copying 1 resource | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ rest-ehr-scape --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ rest-ehr-scape --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /rest-ehr-scape/src/test/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ rest-ehr-scape --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 1 source file to /rest-ehr-scape/target/test-classes | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ rest-ehr-scape --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ rest-ehr-scape --- | |
[INFO] | |
[INFO] ------------------------------------------------------- | |
[INFO] T E S T S | |
[INFO] ------------------------------------------------------- | |
[INFO] Running org.ehrbase.rest.ehrscape.mapper.StructuredStringJSonSerializerTest | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.178 s - in org.ehrbase.rest.ehrscape.mapper.StructuredStringJSonSerializerTest | |
[INFO] | |
[INFO] Results: | |
[INFO] | |
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 | |
[INFO] | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ rest-ehr-scape --- | |
[INFO] Building jar: /rest-ehr-scape/target/rest-ehr-scape-0.16.5.jar | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ rest-ehr-scape >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ rest-ehr-scape --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ rest-ehr-scape <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ rest-ehr-scape --- | |
[INFO] Building jar: /rest-ehr-scape/target/rest-ehr-scape-0.16.5-sources.jar | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ rest-ehr-scape --- | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] ------------------< org.ehrbase.openehr:application >------------------- | |
[INFO] Building application 0.16.5 [8/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ application --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- spring-boot-maven-plugin:2.3.5.RELEASE:build-info (build-info) @ application --- | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ application --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] Copying 4 resources | |
[INFO] Copying 4 resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ application --- | |
[INFO] Nothing to compile - all classes are up to date | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ application --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /application/src/test/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ application --- | |
[INFO] Changes detected - recompiling the module! | |
[INFO] Compiling 1 source file to /application/target/test-classes | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ application --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ application --- | |
[INFO] | |
[INFO] ------------------------------------------------------- | |
[INFO] T E S T S | |
[INFO] ------------------------------------------------------- | |
[INFO] | |
[INFO] Results: | |
[INFO] | |
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 | |
[INFO] | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ application --- | |
[INFO] Building jar: /application/target/application-0.16.5.jar | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ application >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ application --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ application <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ application --- | |
[INFO] Building jar: /application/target/application-0.16.5-sources.jar | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ application --- | |
[INFO] Skipping javadoc generation | |
[INFO] | |
[INFO] --- spring-boot-maven-plugin:2.3.5.RELEASE:repackage (repackage) @ application --- | |
[INFO] Replacing main artifact with repackaged archive | |
[INFO] | |
[INFO] --- spring-boot-maven-plugin:2.3.5.RELEASE:repackage (default) @ application --- | |
[INFO] Replacing main artifact with repackaged archive | |
[INFO] | |
[INFO] -----------------< org.ehrbase.openehr:test-coverage >------------------ | |
[INFO] Building test-coverage 0.16.5 [9/9] | |
[INFO] --------------------------------[ jar ]--------------------------------- | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ test-coverage --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] surefireArgLine set to empty | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ test-coverage --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /test-coverage/src/main/resources | |
[INFO] skip non existing resourceDirectory /test-coverage/src/main/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ test-coverage --- | |
[INFO] No sources to compile | |
[INFO] | |
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ test-coverage --- | |
[INFO] Using 'UTF-8' encoding to copy filtered resources. | |
[INFO] skip non existing resourceDirectory /test-coverage/src/test/resources | |
[INFO] | |
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ test-coverage --- | |
[INFO] No sources to compile | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (default-test) @ test-coverage --- | |
[INFO] Tests are skipped. | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:report-aggregate (aggregate-jacoco-unit-test-coverage) @ test-coverage --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] --- maven-surefire-plugin:3.0.0-M5:test (unit tests) @ test-coverage --- | |
[INFO] No tests to run. | |
[INFO] | |
[INFO] --- maven-jar-plugin:3.2.0:jar (default-jar) @ test-coverage --- | |
[WARNING] JAR will be empty - no content was marked for inclusion! | |
[INFO] Building jar: /test-coverage/target/test-coverage-0.16.5.jar | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:report-aggregate (aggregate-jacoco-overall-coverage) @ test-coverage --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] >>> maven-source-plugin:3.2.1:jar (attach-sources) > generate-sources @ test-coverage >>> | |
[INFO] | |
[INFO] --- jacoco-maven-plugin:0.8.6:prepare-agent (agent for unit tests) @ test-coverage --- | |
[INFO] Skipping JaCoCo execution because property jacoco.skip is set. | |
[INFO] | |
[INFO] <<< maven-source-plugin:3.2.1:jar (attach-sources) < generate-sources @ test-coverage <<< | |
[INFO] | |
[INFO] | |
[INFO] --- maven-source-plugin:3.2.1:jar (attach-sources) @ test-coverage --- | |
[INFO] No sources in project. Archive not created. | |
[INFO] | |
[INFO] --- maven-javadoc-plugin:3.1.1:jar (attach-javadocs) @ test-coverage --- | |
[INFO] Skipping javadoc generation | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Reactor Summary for org.ehrbase.openehr:server 0.16.5: | |
[INFO] | |
[INFO] org.ehrbase.openehr:server ......................... SUCCESS [ 5.409 s] | |
[INFO] api ................................................ SUCCESS [ 3.738 s] | |
[INFO] base ............................................... SUCCESS [ 0.091 s] | |
[INFO] jooq-pq ............................................ SUCCESS [ 4.392 s] | |
[INFO] rest-openehr ....................................... SUCCESS [ 0.123 s] | |
[INFO] service ............................................ SUCCESS [ 6.639 s] | |
[INFO] rest-ehr-scape ..................................... SUCCESS [ 0.765 s] | |
[INFO] application ........................................ SUCCESS [ 1.109 s] | |
[INFO] test-coverage ...................................... SUCCESS [ 0.099 s] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] BUILD SUCCESS | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Total time: 22.563 s | |
[INFO] Finished at: 2021-07-07T12:30:55Z | |
[INFO] ------------------------------------------------------------------------ | |
waiting for server to shut down....2021-07-07 12:30:55.877 UTC [11] LOG: received fast shutdown request | |
2021-07-07 12:30:55.882 UTC [11] LOG: aborting any active transactions | |
2021-07-07 12:30:55.883 UTC [11] LOG: background worker "logical replication launcher" (PID 18) exited with exit code 1 | |
2021-07-07 12:30:55.883 UTC [13] LOG: shutting down | |
2021-07-07 12:30:55.934 UTC [11] LOG: database system is shut down | |
done | |
server stopped | |
Removing intermediate container f7fd6e09e0fb | |
---> 51f80a267285 | |
Step 36/71 : RUN ls -la | |
---> Running in 3bc0d74955a4 | |
total 136 | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 . | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 .. | |
-rwxr-xr-x 1 root root 0 Jul 7 12:30 .dockerenv | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 api | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 application | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 base | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 bin | |
drwxr-xr-x 5 root root 340 Jul 7 12:30 dev | |
drwxr-xr-x 2 root root 4096 Jun 16 22:24 docker-entrypoint-initdb.d | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 etc | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 home | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 jooq-pq | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 lib | |
drwxr-xr-x 5 root root 4096 Jun 15 14:34 media | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 mnt | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 opt | |
-rw-r--r-- 1 root root 31225 Jun 7 18:07 pom.xml | |
drwxr-xr-x 2 root root 4096 Jul 7 12:26 postgres | |
dr-xr-xr-x 563 root root 0 Jul 7 12:30 proc | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 rest-ehr-scape | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 rest-openehr | |
drwx------ 1 root root 4096 Jul 7 12:27 root | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 run | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 sbin | |
drwxr-xr-x 1 root root 4096 Jul 7 12:29 service | |
drwxr-xr-x 2 root root 4096 Jun 15 14:34 srv | |
dr-xr-xr-x 13 root root 0 Jul 7 12:30 sys | |
drwxr-xr-x 1 root root 4096 Jul 7 12:30 test-coverage | |
drwxrwxrwt 1 root root 4096 Jul 7 12:30 tmp | |
drwxr-xr-x 1 root root 4096 Jul 7 12:27 usr | |
drwxr-xr-x 1 root root 4096 Jun 25 19:12 var | |
Removing intermediate container 3bc0d74955a4 | |
---> 5a8576c57271 | |
Step 37/71 : RUN EHRBASE_VERSION=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive exec:exec) && echo ${EHRBASE_VERSION} > /tmp/ehrbase_version && cp application/target/application-${EHRBASE_VERSION}.jar /tmp/ehrbase.jar | |
---> Running in 2e009ad229e7 | |
Removing intermediate container 2e009ad229e7 | |
---> 59360abede97 | |
Step 38/71 : FROM openjdk:11-jre-slim AS final | |
11-jre-slim: Pulling from library/openjdk | |
b4d181a07f80: Pull complete | |
3ee45ae97306: Pull complete | |
567d410fadc4: Pull complete | |
891cdfaa81b9: Pull complete | |
Digest: sha256:24de726604f496a8d34cc960f39c3f3d825ebba522d8be7b256f8b289a448508 | |
Status: Downloaded newer image for openjdk:11-jre-slim | |
---> f1d5c8a9bc51 | |
Step 39/71 : COPY --from=builder /tmp/ehrbase.jar . | |
---> eba861fe83a7 | |
Step 40/71 : COPY --from=builder /tmp/ehrbase_version . | |
---> 306c21a47ecd | |
Step 41/71 : COPY .docker_scripts/docker-entrypoint.sh . | |
---> b86ca82060dd | |
Step 42/71 : RUN chmod +x ./docker-entrypoint.sh | |
---> Running in af3e5d99b872 | |
Removing intermediate container af3e5d99b872 | |
---> 7013bf984f91 | |
Step 43/71 : RUN echo "EHRBASE_VERSION: $(cat ehrbase_version)" | |
---> Running in ae46336d78aa | |
EHRBASE_VERSION: 0.16.5 | |
Removing intermediate container ae46336d78aa | |
---> 50cf8eedb393 | |
Step 44/71 : ARG DB_URL=jdbc:postgresql://ehrdb:5432/ehrbase | |
---> Running in c616eb7b0eff | |
Removing intermediate container c616eb7b0eff | |
---> c807adc5f41b | |
Step 45/71 : ARG DB_USER="ehrbase" | |
---> Running in bc5e9e863d46 | |
Removing intermediate container bc5e9e863d46 | |
---> 1911a83f0772 | |
Step 46/71 : ARG DB_PASS="ehrbase" | |
---> Running in 558048f1e7b1 | |
Removing intermediate container 558048f1e7b1 | |
---> e845d7fe2f0c | |
Step 47/71 : ARG SERVER_NODENAME=local.ehrbase.org | |
---> Running in 0e6d90a9cad3 | |
Removing intermediate container 0e6d90a9cad3 | |
---> 6ad709ba2940 | |
Step 48/71 : ARG SYSTEM_NAME=docker.ehrbase.org | |
---> Running in 1cbc169ea502 | |
Removing intermediate container 1cbc169ea502 | |
---> 8dd3e3e27905 | |
Step 49/71 : ENV EHRBASE_VERSION=${EHRBASE_VERSION} | |
---> Running in 781c896f1a6b | |
Removing intermediate container 781c896f1a6b | |
---> 4f278424deda | |
Step 50/71 : ENV DB_USER=${DB_USER} | |
---> Running in 0a8758d8c1cc | |
Removing intermediate container 0a8758d8c1cc | |
---> 749183bed8d9 | |
Step 51/71 : ENV DB_PASS=${DB_PASS} | |
---> Running in 520da09d22f6 | |
Removing intermediate container 520da09d22f6 | |
---> e5d44128d95c | |
Step 52/71 : ENV DB_URL=${DB_URL} | |
---> Running in b5a3a52aff26 | |
Removing intermediate container b5a3a52aff26 | |
---> 3333806417ca | |
Step 53/71 : ENV SERVER_NODENAME=${SERVER_NODENAME} | |
---> Running in f5b320fad3ef | |
Removing intermediate container f5b320fad3ef | |
---> cc58e43197b0 | |
Step 54/71 : ENV SYSTEM_NAME=${SYSTEM_NAME} | |
---> Running in 9f6bff4a7dd3 | |
Removing intermediate container 9f6bff4a7dd3 | |
---> dd875b5bbc37 | |
Step 55/71 : ENV SECURITY_AUTHTYPE="NONE" | |
---> Running in 20802880ea3f | |
Removing intermediate container 20802880ea3f | |
---> d81fd7766598 | |
Step 56/71 : ENV SECURITY_AUTHUSER="ehrbase-user" | |
---> Running in 377e410c6123 | |
Removing intermediate container 377e410c6123 | |
---> f0d0482d5a4e | |
Step 57/71 : ENV SECURITY_AUTHPASSWORD="SuperSecretPassword" | |
---> Running in 73db313b199a | |
Removing intermediate container 73db313b199a | |
---> 98592716d6ec | |
Step 58/71 : ENV SECURITY_AUTHADMINUSER="ehrbase-admin" | |
---> Running in b16bf18f44dc | |
Removing intermediate container b16bf18f44dc | |
---> 7d693bb14a7b | |
Step 59/71 : ENV SECURITY_AUTHADMINPASSWORD="EvenMoreSecretPassword" | |
---> Running in 668cd9a5569d | |
Removing intermediate container 668cd9a5569d | |
---> 04242653f041 | |
Step 60/71 : ENV SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUERURI="" | |
---> Running in 0f98e484b1cc | |
Removing intermediate container 0f98e484b1cc | |
---> 3670a50a21e2 | |
Step 61/71 : ENV MANAGEMENT_ENDPOINTS_WEB_EXPOSURE="env,health,info,metrics,prometheus" | |
---> Running in d33f2e3919c8 | |
Removing intermediate container d33f2e3919c8 | |
---> 2af97ac98142 | |
Step 62/71 : ENV MANAGEMENT_ENDPOINTS_WEB_BASEPATH="/status" | |
---> Running in 8633e3a35d4c | |
Removing intermediate container 8633e3a35d4c | |
---> b9540cc3faf1 | |
Step 63/71 : ENV MANAGEMENT_ENDPOINT_ENV_ENABLED="false" | |
---> Running in d1c9fcb9fad0 | |
Removing intermediate container d1c9fcb9fad0 | |
---> 53c63f78789d | |
Step 64/71 : ENV MANAGEMENT_ENDPOINT_HEALTH_ENABLED="false" | |
---> Running in aebbf3f7983b | |
Removing intermediate container aebbf3f7983b | |
---> a3c1ea3b2a2c | |
Step 65/71 : ENV MANAGEMENT_ENDPOINT_HEALTH_DATASOURCE_ENABLED="false" | |
---> Running in ccd2266eafc8 | |
Removing intermediate container ccd2266eafc8 | |
---> 15c180ee3956 | |
Step 66/71 : ENV MANAGEMENT_ENDPOINT_INFO_ENABLED="false" | |
---> Running in 2ecb1549d273 | |
Removing intermediate container 2ecb1549d273 | |
---> bc9a85a8c068 | |
Step 67/71 : ENV MANAGEMENT_ENDPOINT_METRICS_ENABLED="false" | |
---> Running in bbae2e3f7f00 | |
Removing intermediate container bbae2e3f7f00 | |
---> 4f899ca36a89 | |
Step 68/71 : ENV MANAGEMENT_ENDPOINT_PROMETHEUS_ENABLED="false" | |
---> Running in 63752f3184f9 | |
Removing intermediate container 63752f3184f9 | |
---> 83b7d1d32990 | |
Step 69/71 : ENV MANAGEMENT_ENDPOINT_HEALTH_PROBES_ENABLED="true" | |
---> Running in 6c414b5c916b | |
Removing intermediate container 6c414b5c916b | |
---> 6f576c8ffd5e | |
Step 70/71 : EXPOSE 8080 | |
---> Running in 54186bf8d976 | |
Removing intermediate container 54186bf8d976 | |
---> 116cf79fa082 | |
Step 71/71 : CMD ./docker-entrypoint.sh | |
---> Running in 1291694b7401 | |
Removing intermediate container 1291694b7401 | |
---> 3c142882d254 | |
Successfully built 3c142882d254 | |
Successfully tagged ehrbase/ehrbase:13.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment