rultor.com logo This build log was produced by rultor.com for CrocInc/sql-boot#427
+ set -e
+ set -o pipefail
++ dirname ./run.sh
+ cd .
+ echo 30530
+ echo '2.0-SNAPSHOT BUILD'
2.0-SNAPSHOT BUILD
+ date
Tue Dec  3 22:05:49 CET 2019
+ uptime
 22:05:49 up 47 days, 19:14,  0 users,  load average: 4.43, 4.77, 4.88
+ ff=default
+ image=yegor256/rultor
+ rebase=false
+ head_branch=master
+ pull_title=PSTGRSCROC-135
+ author=mgramin
+ directory=
+ head=git@github.com:CrocInc/sql-boot.git
+ pull_id=427
+ fork=git@github.com:CrocInc/sql-boot.git
+ fork_branch=croc_repo
+ squash=false
+ vars=('--env=head=git@github.com:CrocInc/sql-boot.git' '--env=pull_id=427' '--env=fork=git@github.com:CrocInc/sql-boot.git' '--env=fork_branch=croc_repo' '--env=head_branch=master' '--env=pull_title=PSTGRSCROC-135' '--env=author=mgramin' '--env=scripts=( '\''export '\''\'\'''\''head=git@github.com:CrocInc/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_id=427'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork=git@github.com:CrocInc/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork_branch=croc_repo'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''head_branch=master'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_title=PSTGRSCROC-135'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''author=mgramin'\''\'\'''\'''\'' '\'';'\'' '\''mvn clean install'\'' '\'';'\'' )')
+ scripts=('export '\''head=git@github.com:CrocInc/sql-boot.git'\''' ';' 'export '\''pull_id=427'\''' ';' 'export '\''fork=git@github.com:CrocInc/sql-boot.git'\''' ';' 'export '\''fork_branch=croc_repo'\''' ';' 'export '\''head_branch=master'\''' ';' 'export '\''pull_title=PSTGRSCROC-135'\''' ';' 'export '\''author=mgramin'\''' ';' 'mvn clean install' ';')
+ container=crocinc_sql-boot_427
+ as_root=false
+ mkdir -p /home/rultor/.ssh
+ echo -e 'Host github.com\n\tStrictHostKeyChecking no\n'
+ chmod 600 /home/rultor/.ssh/config
+ git clone git@github.com:CrocInc/sql-boot.git repo
Cloning into 'repo'...
+ cd repo
+ git config user.email me@rultor.com
+ git config user.name rultor
+ '[' -z 'export '\''head=git@github.com:CrocInc/sql-boot.git'\''' ']'
+ cd ..
+ cat
+ '[' false = true ']'
+ cat
+ chmod a+x entry.sh
+ cat
+ echo 'export '\''head=git@github.com:CrocInc/sql-boot.git'\''' ';' 'export '\''pull_id=427'\''' ';' 'export '\''fork=git@github.com:CrocInc/sql-boot.git'\''' ';' 'export '\''fork_branch=croc_repo'\''' ';' 'export '\''head_branch=master'\''' ';' 'export '\''pull_title=PSTGRSCROC-135'\''' ';' 'export '\''author=mgramin'\''' ';' 'mvn clean install' ';'
+ sensitive=()
+ rm -rf .gpg
+ cd repo
+ git remote add fork git@github.com:CrocInc/sql-boot.git
+ git remote update
Fetching origin
Fetching fork
From github.com:CrocInc/sql-boot
 * [new branch]      croc_repo  -> fork/croc_repo
 * [new branch]      master     -> fork/master
+ args=
+ '[' default == default ']'
+ args=' --ff'
+ '[' default == no ']'
+ '[' default == only ']'
+ export BRANCH=__rultor
+ BRANCH=__rultor
++ git show-branch __rultor
++ wc -l
+ '[' 0 -gt 0 ']'
+ git checkout -B __rultor fork/croc_repo
Switched to a new branch '__rultor'
Branch __rultor set up to track remote branch croc_repo from fork.
+ git checkout -B master origin/master
Switched to and reset branch 'master'
Branch master set up to track remote branch master from origin.
Your branch is up-to-date with 'origin/master'.
+ '[' false == true ']'
+ '[' false == true ']'
+ git merge --ff __rultor
Auto-merging src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetypelist/RestWrapper.kt
Removing src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetype/impl/FsResourceType.kt
Auto-merging src/main/kotlin/com/github/mgramin/sqlboot/model/resource/wrappers/RestWrapper.kt
Auto-merging src/main/kotlin/com/github/mgramin/sqlboot/model/connection/RestWrapper.kt
Merge made by the 'recursive' strategy.
 .../{RestEndpointListWrapper.kt => RestWrapper.kt} |   4 +-
 .../{DbResourceRESTWrapper.kt => RestWrapper.kt}   |   9 +-
 .../mgramin/sqlboot/model/resourcetype/Metadata.kt |  10 +-
 .../resourcetype/ResourceTypeJsonSerializer.kt     |  15 +++
 .../model/resourcetype/impl/FsResourceType.kt      | 113 ---------------------
 .../resourcetype/wrappers/ParallelResourceType.kt  |  36 +++++++
 .../model/resourcetypelist/ResourceTypeList.kt     |   9 ++
 .../RestWrapper.kt}                                |  21 ++--
 .../resourcetypelist/impl/FsResourceTypeList.kt    |  53 ++++++++++
 .../sqlboot/rest/controllers/SwaggerController.kt  |  18 ++--
 .../malewicz/src/components/ObjectsTablePanel.vue  |   2 +-
 src/main/malewicz/src/main.js                      |   6 +-
 .../sqlboot/model/resourcetype/MetadataTest.kt     |   4 +-
 .../resourcetype/ResourceTypeJsonSerializerTest.kt |  27 +++++
 .../model/resourcetype/impl/FsResourceTypeTest.kt  | 106 +++++++++----------
 15 files changed, 232 insertions(+), 201 deletions(-)
 rename src/main/kotlin/com/github/mgramin/sqlboot/model/connection/{RestEndpointListWrapper.kt => RestWrapper.kt} (95%)
 rename src/main/kotlin/com/github/mgramin/sqlboot/model/resource/wrappers/{DbResourceRESTWrapper.kt => RestWrapper.kt} (93%)
 create mode 100644 src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetype/ResourceTypeJsonSerializer.kt
 delete mode 100644 src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetype/impl/FsResourceType.kt
 create mode 100644 src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetype/wrappers/ParallelResourceType.kt
 create mode 100644 src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetypelist/ResourceTypeList.kt
 rename src/main/kotlin/com/github/mgramin/sqlboot/model/{resourcetype/wrappers/rest/RESTWrapper.kt => resourcetypelist/RestWrapper.kt} (66%)
 create mode 100644 src/main/kotlin/com/github/mgramin/sqlboot/model/resourcetypelist/impl/FsResourceTypeList.kt
 create mode 100644 src/test/kotlin/com/github/mgramin/sqlboot/model/resourcetype/ResourceTypeJsonSerializerTest.kt
+ docker_when_possible
+ true
++ uptime
++ sed 's/ /\n/g'
++ tail -n 1
+ load=4.88
++ echo 4.88 '>' 30
++ bc
+ '[' 0 -eq 1 ']'
+ echo 'load average is 4.88, low enough to run a new Docker container'
load average is 4.88, low enough to run a new Docker container
+ break
+ cd ..
+ '[' -n '' ']'
+ use_image=yegor256/rultor
+ docker pull yegor256/rultor
Using default tag: latest
latest: Pulling from yegor256/rultor
7b722c1070cd: Pulling fs layer
5fbf74db61f1: Pulling fs layer
ed41cb72e5c9: Pulling fs layer
7ea47a67709e: Pulling fs layer
bce60eb7a46b: Pulling fs layer
523858da47c2: Pulling fs layer
1b60cbdb6c97: Pulling fs layer
a3fb022b378b: Pulling fs layer
d3f3abe9b88a: Pulling fs layer
ceb6b212c107: Pulling fs layer
81a9dd64cefb: Pulling fs layer
3e4544aabf74: Pulling fs layer
8f99443cb3e2: Pulling fs layer
159768371a7e: Pulling fs layer
0c4c219484bb: Pulling fs layer
a1205d85eee6: Pulling fs layer
7e74813b42ed: Pulling fs layer
026d8859d391: Pulling fs layer
6913bd7aa42e: Pulling fs layer
706056115e84: Pulling fs layer
b3847e560884: Pulling fs layer
6c71dd934110: Pulling fs layer
33d266232bf5: Pulling fs layer
8ceee8c53648: Pulling fs layer
d9b81a88c6a6: Pulling fs layer
e5b84ac582ec: Pulling fs layer
5903f1c5734a: Pulling fs layer
2adacba61ab3: Pulling fs layer
a4e23645b71e: Pulling fs layer
e490f1f269e4: Pulling fs layer
2b665347139c: Pulling fs layer
f89de76765d1: Pulling fs layer
bd11dd1b733c: Pulling fs layer
7ea47a67709e: Waiting
706056115e84: Waiting
bce60eb7a46b: Waiting
b3847e560884: Waiting
523858da47c2: Waiting
6c71dd934110: Waiting
1b60cbdb6c97: Waiting
33d266232bf5: Waiting
a3fb022b378b: Waiting
8ceee8c53648: Waiting
d9b81a88c6a6: Waiting
d3f3abe9b88a: Waiting
ceb6b212c107: Waiting
e5b84ac582ec: Waiting
2b665347139c: Waiting
5903f1c5734a: Waiting
f89de76765d1: Waiting
2adacba61ab3: Waiting
81a9dd64cefb: Waiting
a4e23645b71e: Waiting
e490f1f269e4: Waiting
bd11dd1b733c: Waiting
159768371a7e: Waiting
6913bd7aa42e: Waiting
3e4544aabf74: Waiting
7e74813b42ed: Waiting
8f99443cb3e2: Waiting
a1205d85eee6: Waiting
ed41cb72e5c9: Download complete
5fbf74db61f1: Verifying Checksum
5fbf74db61f1: Download complete
7ea47a67709e: Verifying Checksum
7ea47a67709e: Download complete
bce60eb7a46b: Verifying Checksum
bce60eb7a46b: Download complete
7b722c1070cd: Verifying Checksum
7b722c1070cd: Download complete
a3fb022b378b: Verifying Checksum
a3fb022b378b: Download complete
1b60cbdb6c97: Verifying Checksum
1b60cbdb6c97: Download complete
7b722c1070cd: Pull complete
5fbf74db61f1: Pull complete
ed41cb72e5c9: Pull complete
7ea47a67709e: Pull complete
bce60eb7a46b: Pull complete
ceb6b212c107: Verifying Checksum
ceb6b212c107: Download complete
81a9dd64cefb: Verifying Checksum
81a9dd64cefb: Download complete
523858da47c2: Verifying Checksum
523858da47c2: Download complete
8f99443cb3e2: Download complete
3e4544aabf74: Verifying Checksum
3e4544aabf74: Download complete
159768371a7e: Verifying Checksum
159768371a7e: Download complete
0c4c219484bb: Verifying Checksum
0c4c219484bb: Download complete
a1205d85eee6: Verifying Checksum
a1205d85eee6: Download complete
7e74813b42ed: Verifying Checksum
7e74813b42ed: Download complete
026d8859d391: Verifying Checksum
026d8859d391: Download complete
d3f3abe9b88a: Verifying Checksum
d3f3abe9b88a: Download complete
b3847e560884: Verifying Checksum
b3847e560884: Download complete
523858da47c2: Pull complete
1b60cbdb6c97: Pull complete
a3fb022b378b: Pull complete
6c71dd934110: Verifying Checksum
6c71dd934110: Download complete
33d266232bf5: Verifying Checksum
33d266232bf5: Download complete
8ceee8c53648: Verifying Checksum
8ceee8c53648: Download complete
d9b81a88c6a6: Verifying Checksum
d9b81a88c6a6: Download complete
d3f3abe9b88a: Pull complete
e5b84ac582ec: Verifying Checksum
e5b84ac582ec: Download complete
ceb6b212c107: Pull complete
81a9dd64cefb: Pull complete
5903f1c5734a: Verifying Checksum
5903f1c5734a: Download complete
3e4544aabf74: Pull complete
8f99443cb3e2: Pull complete
159768371a7e: Pull complete
0c4c219484bb: Pull complete
a1205d85eee6: Pull complete
7e74813b42ed: Pull complete
026d8859d391: Pull complete
2adacba61ab3: Verifying Checksum
2adacba61ab3: Download complete
a4e23645b71e: Verifying Checksum
a4e23645b71e: Download complete
2b665347139c: Verifying Checksum
2b665347139c: Download complete
f89de76765d1: Verifying Checksum
f89de76765d1: Download complete
bd11dd1b733c: Verifying Checksum
bd11dd1b733c: Download complete
6913bd7aa42e: Download complete
6913bd7aa42e: Pull complete
706056115e84: Download complete
706056115e84: Pull complete
b3847e560884: Pull complete
6c71dd934110: Pull complete
33d266232bf5: Pull complete
8ceee8c53648: Pull complete
d9b81a88c6a6: Pull complete
e5b84ac582ec: Pull complete
5903f1c5734a: Pull complete
2adacba61ab3: Pull complete
a4e23645b71e: Pull complete
e490f1f269e4: Pull complete
2b665347139c: Pull complete
f89de76765d1: Pull complete
bd11dd1b733c: Pull complete
Digest: sha256:89ad567752735f414ef0f6408fd08b5aeed93259147b0dfe2df279054c27a472
Status: Downloaded newer image for yegor256/rultor:latest
+ docker ps --filter=status=exited
+ grep --quiet '\scrocinc_sql-boot_427\s*$'
+ ls -al .
total 716
drwx--x--x  3 rultor rultor   4096 Dec  3 22:05 .
drwxrwxrwt 12 root   root   684032 Dec  3 22:09 ..
-rw-rw-r--  1 rultor rultor    444 Dec  3 22:09 end.sh
-rwxrwxr-x  1 rultor rultor    338 Dec  3 22:05 entry.sh
-rw-rw-r--  1 rultor rultor      6 Dec  3 22:05 pid
drwxrwxr-x  5 rultor rultor   4096 Dec  3 22:05 repo
-rwxrwxr-x  1 rultor rultor   5407 Dec  3 22:05 run.sh
-rw-rw-r--  1 rultor rultor    394 Dec  3 22:05 script.sh
-rw-rw-r--  1 rultor rultor  11044 Dec  3 22:09 stdout
++ pwd
++ pwd
+ docker run -t --rm -v /tmp/rultor-iqrp:/main --env=head=git@github.com:CrocInc/sql-boot.git --env=pull_id=427 --env=fork=git@github.com:CrocInc/sql-boot.git --env=fork_branch=croc_repo --env=head_branch=master --env=pull_title=PSTGRSCROC-135 --env=author=mgramin '--env=scripts=( '\''export '\''\'\'''\''head=git@github.com:CrocInc/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_id=427'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork=git@github.com:CrocInc/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork_branch=croc_repo'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''head_branch=master'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_title=PSTGRSCROC-135'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''author=mgramin'\''\'\'''\'''\'' '\'';'\'' '\''mvn clean install'\'' '\'';'\'' )' --hostname=docker --privileged --memory=6g --memory-swap=16g --oom-kill-disable --cidfile=/tmp/rultor-iqrp/cid -w=/main -v /var/run/docker.sock:/var/run/docker.sock --entrypoint=/main/entry.sh --name=crocinc_sql-boot_427 yegor256/rultor /main/entry.sh
WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
+ set -e
+ set -o pipefail
+ shopt -s dotglob
+ useradd -m -G sudo r
+ echo '%sudo ALL=(ALL) NOPASSWD:ALL'
+ cp -R /root/.bashrc /root/.composer /root/.gem /root/.gnupg /root/.m2 /root/.profile /root/texmf /root/.wget-hsts /home/r
+ cp -R ./cid ./end.sh ./entry.sh ./pid ./repo ./run.sh ./script.sh ./stdout /home/r
+ rm -rf repo
+ chown -R r:r /home/r
+ chmod a+x /home/r/script.sh
+ su --login r --command /home/r/script.sh
mesg: change /dev/pts/0 mode failed: Operation not permitted
+ set -e
+ set -o pipefail
+ shopt -s expand_aliases
+ alias 'sudo=sudo -i'
+ export HOME=/home/r
+ HOME=/home/r
+ cd /home/r/repo
+ export head=git@github.com:CrocInc/sql-boot.git
+ head=git@github.com:CrocInc/sql-boot.git
+ export pull_id=427
+ pull_id=427
+ export fork=git@github.com:CrocInc/sql-boot.git
+ fork=git@github.com:CrocInc/sql-boot.git
+ export fork_branch=croc_repo
+ fork_branch=croc_repo
+ export head_branch=master
+ head_branch=master
+ export pull_title=PSTGRSCROC-135
+ pull_title=PSTGRSCROC-135
+ export author=mgramin
+ author=mgramin
+ mvn clean install
[INFO] Scanning for projects...
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/2.2.1.RELEASE/spring-boot-starter-parent-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/2.2.1.RELEASE/spring-boot-starter-parent-2.2.1.RELEASE.pom (8 KB at 71.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.2.1.RELEASE/spring-boot-dependencies-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.2.1.RELEASE/spring-boot-dependencies-2.2.1.RELEASE.pom (124 KB at 2524.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.0/jackson-bom-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.10.0/jackson-bom-2.10.0.pom (13 KB at 531.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom (9 KB at 383.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 KB at 978.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-bom/1.3.1/micrometer-bom-1.3.1.pom
Downloaded: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-bom/1.3.1/micrometer-bom-1.3.1.pom (7 KB at 270.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.43.Final/netty-bom-4.1.43.Final.pom (8 KB at 336.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Dysprosium-SR1/reactor-bom-Dysprosium-SR1.pom
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Dysprosium-SR1/reactor-bom-Dysprosium-SR1.pom (4 KB at 172.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.0.0-RC5/rsocket-bom-1.0.0-RC5.pom
Downloaded: http://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.0.0-RC5/rsocket-bom-1.0.0-RC5.pom (3 KB at 125.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.12.1/log4j-bom-2.12.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.12.1/log4j-bom-2.12.1.pom (8 KB at 306.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/1/logging-parent-1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/1/logging-parent-1.pom (4 KB at 146.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.22.v20191022/jetty-bom-9.4.22.v20191022.pom
Downloaded: http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.22.v20191022/jetty-bom-9.4.22.v20191022.pom (17 KB at 707.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.29.1/jersey-bom-2.29.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.29.1/jersey-bom-2.29.1.pom (19 KB at 770.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom
Downloaded: http://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.5/project-1.0.5.pom (13 KB at 559.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.3.60/kotlin-bom-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.3.60/kotlin-bom-1.3.60.pom (9 KB at 343.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.2/kotlinx-coroutines-bom-1.3.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-bom/1.3.2/kotlinx-coroutines-bom-1.3.2.pom (5 KB at 182.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.5.2/junit-bom-5.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.5.2/junit-bom-5.5.2.pom (5 KB at 196.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.2.1.RELEASE/spring-framework-bom-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.2.1.RELEASE/spring-framework-bom-5.2.1.RELEASE.pom (6 KB at 234.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/data/spring-data-releasetrain/Moore-SR1/spring-data-releasetrain-Moore-SR1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/data/spring-data-releasetrain/Moore-SR1/spring-data-releasetrain-Moore-SR1.pom (5 KB at 213.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/2.2.1.RELEASE/spring-data-build-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/2.2.1.RELEASE/spring-data-build-2.2.1.RELEASE.pom (7 KB at 314.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/5.2.1.RELEASE/spring-integration-bom-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/5.2.1.RELEASE/spring-integration-bom-5.2.1.RELEASE.pom (9 KB at 395.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.2.1.RELEASE/spring-security-bom-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.2.1.RELEASE/spring-security-bom-5.2.1.RELEASE.pom (6 KB at 252.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/Corn-RELEASE/spring-session-bom-Corn-RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/Corn-RELEASE/spring-session-bom-Corn-RELEASE.pom (3 KB at 129.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.3.50/kotlin-bom-1.3.50.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.3.50/kotlin-bom-1.3.50.pom (9 KB at 389.8 KB/sec)
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building sql-boot 0.5.1
[INFO] ------------------------------------------------------------------------
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.2.1.RELEASE/spring-boot-maven-plugin-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.2.1.RELEASE/spring-boot-maven-plugin-2.2.1.RELEASE.pom (5 KB at 211.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-tools/2.2.1.RELEASE/spring-boot-tools-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-tools/2.2.1.RELEASE/spring-boot-tools-2.2.1.RELEASE.pom (2 KB at 57.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-parent/2.2.1.RELEASE/spring-boot-parent-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-parent/2.2.1.RELEASE/spring-boot-parent-2.2.1.RELEASE.pom (2 KB at 78.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.2.1.RELEASE/spring-boot-maven-plugin-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.2.1.RELEASE/spring-boot-maven-plugin-2.2.1.RELEASE.jar (68 KB at 1980.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom (5 KB at 206.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom (39 KB at 1430.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar (53 KB at 1809.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.2/maven-failsafe-plugin-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.2/maven-failsafe-plugin-2.22.2.pom (12 KB at 503.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.22.2/surefire-2.22.2.pom (26 KB at 1049.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 KB at 1658.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 KB at 759.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.2/maven-failsafe-plugin-2.22.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.2/maven-failsafe-plugin-2.22.2.jar (288 KB at 4160.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.pom (8 KB at 319.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.1/antlr4-master-4.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.1/antlr4-master-4.1.pom (8 KB at 372.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.jar (22 KB at 894.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom (6 KB at 240.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom (11 KB at 483.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/31/maven-parent-31.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/31/maven-parent-31.pom (43 KB at 1694.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (16 KB at 657.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar
Downloaded: http://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 1240.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom (7 KB at 318.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar (31 KB at 1284.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.60/kotlin-maven-plugin-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.60/kotlin-maven-plugin-1.3.60.pom (6 KB at 257.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project/1.3.60/kotlin-project-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project/1.3.60/kotlin-project-1.3.60.pom (10 KB at 427.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.60/kotlin-maven-plugin-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.60/kotlin-maven-plugin-1.3.60.jar (78 KB at 2360.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.pom (10 KB at 450.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom (12 KB at 587.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.jar (50 KB at 1816.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.pom (5 KB at 232.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.2/maven-surefire-plugin-2.22.2.jar (40 KB at 1465.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.pom (8 KB at 339.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom (11 KB at 521.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.2/maven-jar-plugin-3.1.2.jar (28 KB at 1137.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.pom (15 KB at 672.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/16/maven-plugins-16.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/16/maven-plugins-16.pom (13 KB at 574.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.jar (204 KB at 3922.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom (7 KB at 298.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar
Downloaded: http://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 1469.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.60/kotlin-stdlib-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.60/kotlin-stdlib-1.3.60.pom (2 KB at 78.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.60/kotlin-stdlib-common-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.60/kotlin-stdlib-common-1.3.60.pom (2 KB at 71.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom (5 KB at 229.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.60/kotlin-reflect-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.60/kotlin-reflect-1.3.60.pom (2 KB at 64.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.60/kotlin-stdlib-jdk8-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.60/kotlin-stdlib-jdk8-1.3.60.pom (2 KB at 87.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.60/kotlin-stdlib-jdk7-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.60/kotlin-stdlib-jdk7-1.3.60.pom (2 KB at 70.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.2.1.RELEASE/spring-boot-starter-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.2.1.RELEASE/spring-boot-starter-2.2.1.RELEASE.pom (3 KB at 138.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starters/2.2.1.RELEASE/spring-boot-starters-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starters/2.2.1.RELEASE/spring-boot-starters-2.2.1.RELEASE.pom (2 KB at 86.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.2.1.RELEASE/spring-boot-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.2.1.RELEASE/spring-boot-2.2.1.RELEASE.pom (16 KB at 688.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.1.RELEASE/spring-core-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.1.RELEASE/spring-core-5.2.1.RELEASE.pom (2 KB at 81.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.1.RELEASE/spring-jcl-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.1.RELEASE/spring-jcl-5.2.1.RELEASE.pom (2 KB at 72.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.1.RELEASE/spring-context-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.1.RELEASE/spring-context-5.2.1.RELEASE.pom (3 KB at 105.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.1.RELEASE/spring-aop-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.1.RELEASE/spring-aop-5.2.1.RELEASE.pom (2 KB at 91.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.1.RELEASE/spring-beans-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.1.RELEASE/spring-beans-5.2.1.RELEASE.pom (2 KB at 78.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.1.RELEASE/spring-expression-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.1.RELEASE/spring-expression-5.2.1.RELEASE.pom (2 KB at 80.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.2.1.RELEASE/spring-boot-autoconfigure-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.2.1.RELEASE/spring-boot-autoconfigure-2.2.1.RELEASE.pom (37 KB at 1402.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.2.1.RELEASE/spring-boot-starter-logging-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.2.1.RELEASE/spring-boot-starter-logging-2.2.1.RELEASE.pom (3 KB at 104.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom
Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom (13 KB at 608.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom
Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom (18 KB at 755.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom
Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom (5 KB at 27.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom
Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.pom (4 KB at 178.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom
Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.29/slf4j-parent-1.7.29.pom (14 KB at 561.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.12.1/log4j-to-slf4j-2.12.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.12.1/log4j-to-slf4j-2.12.1.pom (8 KB at 318.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.12.1/log4j-2.12.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.12.1/log4j-2.12.1.pom (62 KB at 2042.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.12.1/log4j-api-2.12.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.12.1/log4j-api-2.12.1.pom (13 KB at 558.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom
Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.pom (990 B at 46.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.pom
Downloaded: http://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.pom (16 KB at 662.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/annotation/ca-parent/1.3.5/ca-parent-1.3.5.pom
Downloaded: http://repo.maven.apache.org/maven2/jakarta/annotation/ca-parent/1.3.5/ca-parent-1.3.5.pom (3 KB at 136.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.25/snakeyaml-1.25.pom
Downloaded: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.25/snakeyaml-1.25.pom (37 KB at 1534.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.2.1.RELEASE/spring-boot-starter-test-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.2.1.RELEASE/spring-boot-starter-test-2.2.1.RELEASE.pom (5 KB at 232.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.2.1.RELEASE/spring-boot-test-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.2.1.RELEASE/spring-boot-test-2.2.1.RELEASE.pom (7 KB at 327.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.2.1.RELEASE/spring-boot-test-autoconfigure-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.2.1.RELEASE/spring-boot-test-autoconfigure-2.2.1.RELEASE.pom (11 KB at 521.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.pom (3 KB at 117.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom
Downloaded: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom (9 KB at 419.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom
Downloaded: http://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom (9 KB at 376.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom (12 KB at 538.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom (2 KB at 90.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom (6 KB at 255.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom
Downloaded: http://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom (16 KB at 710.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom
Downloaded: http://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom (8 KB at 340.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (5 KB at 212.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 KB at 768.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 KB at 539.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.5.2/junit-jupiter-5.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.5.2/junit-jupiter-5.5.2.pom (3 KB at 106.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.5.2/junit-jupiter-api-5.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.5.2/junit-jupiter-api-5.5.2.pom (3 KB at 110.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.pom (2 KB at 54.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.pom (2 KB at 78.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.5.2/junit-platform-commons-1.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.5.2/junit-platform-commons-1.5.2.pom (2 KB at 98.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.5.2/junit-jupiter-params-5.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.5.2/junit-jupiter-params-5.5.2.pom (3 KB at 113.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.5.2/junit-jupiter-engine-5.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.5.2/junit-jupiter-engine-5.5.2.pom (3 KB at 116.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.5.2/junit-platform-engine-1.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.5.2/junit-platform-engine-1.5.2.pom (3 KB at 116.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.5.2/junit-vintage-engine-5.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.5.2/junit-vintage-engine-5.5.2.pom (3 KB at 115.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.1.0/mockito-junit-jupiter-3.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.1.0/mockito-junit-jupiter-3.1.0.pom (21 KB at 936.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.1.0/mockito-core-3.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.1.0/mockito-core-3.1.0.pom (21 KB at 989.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.2/byte-buddy-1.10.2.pom
Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.2/byte-buddy-1.10.2.pom (11 KB at 509.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.10.2/byte-buddy-parent-1.10.2.pom
Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.10.2/byte-buddy-parent-1.10.2.pom (38 KB at 1514.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.2/byte-buddy-agent-1.10.2.pom
Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.2/byte-buddy-agent-1.10.2.pom (10 KB at 424.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.pom (3 KB at 129.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom (17 KB at 768.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.13.2/assertj-core-3.13.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.13.2/assertj-core-3.13.2.pom (16 KB at 761.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.5/assertj-parent-pom-2.2.5.pom
Downloaded: http://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.5/assertj-parent-pom-2.2.5.pom (19 KB at 885.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.5.1/junit-bom-5.5.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.5.1/junit-bom-5.5.1.pom (5 KB at 139.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.pom (2 KB at 55.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.pom (6 KB at 240.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom
Downloaded: http://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom (3 KB at 123.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.1.RELEASE/spring-test-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.1.RELEASE/spring-test-5.2.1.RELEASE.pom (2 KB at 72.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.3/xmlunit-core-2.6.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.3/xmlunit-core-2.6.3.pom (3 KB at 125.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.6.3/xmlunit-parent-2.6.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.6.3/xmlunit-parent-2.6.3.pom (18 KB at 770.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.2.1.RELEASE/spring-boot-starter-web-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.2.1.RELEASE/spring-boot-starter-web-2.2.1.RELEASE.pom (4 KB at 159.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.2.1.RELEASE/spring-boot-starter-json-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.2.1.RELEASE/spring-boot-starter-json-2.2.1.RELEASE.pom (3 KB at 146.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.1.RELEASE/spring-web-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.1.RELEASE/spring-web-5.2.1.RELEASE.pom (2 KB at 40.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.pom (7 KB at 345.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.0/jackson-base-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.10.0/jackson-base-2.10.0.pom (7 KB at 324.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.0/jackson-annotations-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.0/jackson-annotations-2.10.0.pom (3 KB at 134.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.0/jackson-core-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.0/jackson-core-2.10.0.pom (5 KB at 226.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.10.0/jackson-datatype-jdk8-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.10.0/jackson-datatype-jdk8-2.10.0.pom (3 KB at 114.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.10.0/jackson-modules-java8-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.10.0/jackson-modules-java8-2.10.0.pom (4 KB at 164.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.10.0/jackson-datatype-jsr310-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.10.0/jackson-datatype-jsr310-2.10.0.pom (5 KB at 222.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.10.0/jackson-module-parameter-names-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.10.0/jackson-module-parameter-names-2.10.0.pom (4 KB at 205.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.2.1.RELEASE/spring-boot-starter-tomcat-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.2.1.RELEASE/spring-boot-starter-tomcat-2.2.1.RELEASE.pom (3 KB at 138.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.27/tomcat-embed-core-9.0.27.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.27/tomcat-embed-core-9.0.27.pom (2 KB at 86.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.27/tomcat-embed-el-9.0.27.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.27/tomcat-embed-el-9.0.27.pom (2 KB at 75.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.27/tomcat-embed-websocket-9.0.27.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.27/tomcat-embed-websocket-9.0.27.pom (2 KB at 91.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-annotations-api/9.0.27/tomcat-annotations-api-9.0.27.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-annotations-api/9.0.27/tomcat-annotations-api-9.0.27.pom (2 KB at 78.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.2.1.RELEASE/spring-boot-starter-validation-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.2.1.RELEASE/spring-boot-starter-validation-2.2.1.RELEASE.pom (3 KB at 136.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.1/jakarta.validation-api-2.0.1.pom
Downloaded: http://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.1/jakarta.validation-api-2.0.1.pom (12 KB at 543.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.pom (12 KB at 563.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/6.0.18.Final/hibernate-validator-parent-6.0.18.Final.pom (60 KB at 2049.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom (11 KB at 494.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom (4 KB at 194.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom (6 KB at 258.8 KB/sec)
Downloading: http://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: http://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 (6 KB at 243.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.pom (5 KB at 243.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jboss/jboss-parent/34/jboss-parent-34.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/jboss-parent/34/jboss-parent-34.pom (64 KB at 2197.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.pom (8 KB at 337.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/35/oss-parent-35.pom (23 KB at 1012.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.1.RELEASE/spring-webmvc-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.1.RELEASE/spring-webmvc-5.2.1.RELEASE.pom (3 KB at 123.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.2.1.RELEASE/spring-boot-starter-webflux-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.2.1.RELEASE/spring-boot-starter-webflux-2.2.1.RELEASE.pom (4 KB at 153.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.2.1.RELEASE/spring-boot-starter-reactor-netty-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.2.1.RELEASE/spring-boot-starter-reactor-netty-2.2.1.RELEASE.pom (3 KB at 102.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.pom (6 KB at 276.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.43.Final/netty-codec-http-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.43.Final/netty-codec-http-4.1.43.Final.pom (3 KB at 117.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.43.Final/netty-parent-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.43.Final/netty-parent-4.1.43.Final.pom (55 KB at 1893.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.pom (10 KB at 467.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.pom (2 KB at 73.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.pom (2 KB at 98.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.pom (2 KB at 81.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.43.Final/netty-codec-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.43.Final/netty-codec-4.1.43.Final.pom (4 KB at 175.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.43.Final/netty-handler-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.43.Final/netty-handler-4.1.43.Final.pom (4 KB at 157.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.43.Final/netty-codec-http2-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.43.Final/netty-codec-http2-4.1.43.Final.pom (3 KB at 125.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.43.Final/netty-handler-proxy-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.43.Final/netty-handler-proxy-4.1.43.Final.pom (3 KB at 136.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.43.Final/netty-codec-socks-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.43.Final/netty-codec-socks-4.1.43.Final.pom (2 KB at 87.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.43.Final/netty-transport-native-epoll-4.1.43.Final.pom (16 KB at 677.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.43.Final/netty-transport-native-unix-common-4.1.43.Final.pom (16 KB at 718.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.3.0.RELEASE/reactor-core-3.3.0.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.3.0.RELEASE/reactor-core-3.3.0.RELEASE.pom (4 KB at 145.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.pom (2 KB at 56.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.pom (14 KB at 605.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.2.1.RELEASE/spring-webflux-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.2.1.RELEASE/spring-webflux-5.2.1.RELEASE.pom (3 KB at 104.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.pom (4 KB at 165.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart/1.1.0/nio-multipart-1.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart/1.1.0/nio-multipart-1.1.0.pom (12 KB at 529.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.pom (11 KB at 495.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.pom (8 KB at 398.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.0.27.Final/netty-parent-4.0.27.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.0.27.Final/netty-parent-4.0.27.Final.pom (48 KB at 1764.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.2.1.RELEASE/spring-boot-starter-jdbc-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.2.1.RELEASE/spring-boot-starter-jdbc-2.2.1.RELEASE.pom (3 KB at 121.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.pom
Downloaded: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.pom (21 KB at 909.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.1.RELEASE/spring-jdbc-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.1.RELEASE/spring-jdbc-5.2.1.RELEASE.pom (3 KB at 100.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.1.RELEASE/spring-tx-5.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.1.RELEASE/spring-tx-5.2.1.RELEASE.pom (2 KB at 87.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.3.0.RELEASE/reactor-test-3.3.0.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.3.0.RELEASE/reactor-test-3.3.0.RELEASE.pom (3 KB at 104.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/kotlin/reactor-kotlin-extensions/1.0.0.RELEASE/reactor-kotlin-extensions-1.0.0.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/kotlin/reactor-kotlin-extensions/1.0.0.RELEASE/reactor-kotlin-extensions-1.0.0.RELEASE.pom (3 KB at 111.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.60/kotlin-test-junit-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.60/kotlin-test-junit-1.3.60.pom (2 KB at 85.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.60/kotlin-test-annotations-common-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.60/kotlin-test-annotations-common-1.3.60.pom (2 KB at 71.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.60/kotlin-test-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.60/kotlin-test-1.3.60.pom (2 KB at 84.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.60/kotlin-test-common-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.60/kotlin-test-common-1.3.60.pom (2 KB at 77.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.1/hamcrest-core-2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.1/hamcrest-core-2.1.pom (2 KB at 66.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.pom (2 KB at 50.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hubspot/jinjava/jinjava/2.5.2/jinjava-2.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/com/hubspot/jinjava/jinjava/2.5.2/jinjava-2.5.2.pom (9 KB at 363.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hubspot/basepom/25.4/basepom-25.4.pom
Downloaded: http://repo.maven.apache.org/maven2/com/hubspot/basepom/25.4/basepom-25.4.pom (76 KB at 2274.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/basepom/basepom-oss/25/basepom-oss-25.pom
Downloaded: http://repo.maven.apache.org/maven2/org/basepom/basepom-oss/25/basepom-oss-25.pom (9 KB at 425.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/basepom/basepom-minimal/25/basepom-minimal-25.pom
Downloaded: http://repo.maven.apache.org/maven2/org/basepom/basepom-minimal/25/basepom-minimal-25.pom (12 KB at 493.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/basepom/basepom-foundation/25/basepom-foundation-25.pom
Downloaded: http://repo.maven.apache.org/maven2/org/basepom/basepom-foundation/25/basepom-foundation-25.pom (51 KB at 1793.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.pom (6 KB at 263.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/22.0/guava-parent-22.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/22.0/guava-parent-22.0.pom (9 KB at 411.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.pom (2 KB at 76.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.18/error_prone_parent-2.0.18.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.0.18/error_prone_parent-2.0.18.pom (5 KB at 233.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom (3 KB at 142.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom (3 KB at 118.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom (5 KB at 214.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.1-GA/javassist-3.24.1-GA.pom
Downloaded: http://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.1-GA/javassist-3.24.1-GA.pom (11 KB at 500.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.3/jsoup-1.10.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.3/jsoup-1.10.3.pom (8 KB at 339.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.2/re2j-1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.2/re2j-1.2.pom (933 B at 45.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.pom (28 KB at 1154.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (71 KB at 2269.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-net/commons-net/3.3/commons-net-3.3.pom
Downloaded: http://repo.maven.apache.org/maven2/commons-net/commons-net/3.3/commons-net-3.3.pom (19 KB at 850.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/30/commons-parent-30.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/30/commons-parent-30.pom (55 KB at 2020.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/3.0.1/annotations-3.0.1.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/3.0.1/annotations-3.0.1.pom (8 KB at 345.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/obermuhlner/big-math/2.0.0/big-math-2.0.0.pom
Downloaded: http://repo.maven.apache.org/maven2/ch/obermuhlner/big-math/2.0.0/big-math-2.0.0.pom (2 KB at 59.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.200/h2-1.4.200.pom
Downloaded: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.200/h2-1.4.200.pom (958 B at 44.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.pom
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.pom (4 KB at 169.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser-project/1.0.31/swagger-parser-project-1.0.31.pom
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser-project/1.0.31/swagger-parser-project-1.0.31.pom (10 KB at 419.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.pom
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.pom (7 KB at 291.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-project/1.5.15/swagger-project-1.5.15.pom
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-project/1.5.15/swagger-project-1.5.15.pom (22 KB at 925.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.10.0/jackson-dataformat-yaml-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.10.0/jackson-dataformat-yaml-2.10.0.pom (3 KB at 125.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.10.0/jackson-dataformats-text-2.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.10.0/jackson-dataformats-text-2.10.0.pom (3 KB at 154.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.pom
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.pom (5 KB at 237.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.pom
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.pom (7 KB at 290.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom (7 KB at 333.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom (10 KB at 483.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom
Downloaded: http://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom (12 KB at 570.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.29/slf4j-ext-1.7.29.pom
Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.29/slf4j-ext-1.7.29.pom (3 KB at 135.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.pom (4 KB at 144.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.pom (3 KB at 133.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark-parent/0.11.0/commonmark-parent-0.11.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark-parent/0.11.0/commonmark-parent-0.11.0.pom (8 KB at 367.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom
Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom (4 KB at 155.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom
Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom (32 KB at 1362.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.27/tomcat-jdbc-9.0.27.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.27/tomcat-jdbc-9.0.27.pom (2 KB at 81.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.27/tomcat-juli-9.0.27.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.27/tomcat-juli-9.0.27.pom (2 KB at 74.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.pom (12 KB at 526.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.12.4/hazelcast-3.12.4.pom
Downloaded: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.12.4/hazelcast-3.12.4.pom (20 KB at 861.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast-root/3.12.4/hazelcast-root-3.12.4.pom
Downloaded: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast-root/3.12.4/hazelcast-root-3.12.4.pom (61 KB at 2004.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.pom (3 KB at 117.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.6/gson-parent-2.8.6.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.6/gson-parent-2.8.6.pom (5 KB at 205.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.2.1.RELEASE/spring-boot-starter-actuator-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.2.1.RELEASE/spring-boot-starter-actuator-2.2.1.RELEASE.pom (3 KB at 121.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.2.1.RELEASE/spring-boot-actuator-autoconfigure-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.2.1.RELEASE/spring-boot-actuator-autoconfigure-2.2.1.RELEASE.pom (22 KB at 900.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.2.1.RELEASE/spring-boot-actuator-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.2.1.RELEASE/spring-boot-actuator-2.2.1.RELEASE.pom (15 KB at 640.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.3.1/micrometer-core-1.3.1.pom
Downloaded: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.3.1/micrometer-core-1.3.1.pom (7 KB at 304.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.11/HdrHistogram-2.1.11.pom
Downloaded: http://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.11/HdrHistogram-2.1.11.pom (11 KB at 510.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom (8 KB at 321.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.3.1/micrometer-registry-prometheus-1.3.1.pom
Downloaded: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.3.1/micrometer-registry-prometheus-1.3.1.pom (3 KB at 137.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.pom (2 KB at 75.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/prometheus/parent/0.7.0/parent-0.7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/parent/0.7.0/parent-0.7.0.pom (8 KB at 357.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.pom (2 KB at 78.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.60/kotlin-stdlib-1.3.60.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.60/kotlin-stdlib-common-1.3.60.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.60/kotlin-reflect-1.3.60.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.60/kotlin-stdlib-jdk8-1.3.60.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar (18 KB at 311.4 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.60/kotlin-stdlib-jdk8-1.3.60.jar (16 KB at 335.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.60/kotlin-stdlib-jdk7-1.3.60.jar
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.2.1.RELEASE/spring-boot-starter-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.60/kotlin-stdlib-common-1.3.60.jar (167 KB at 2197.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.2.1.RELEASE/spring-boot-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.60/kotlin-stdlib-jdk7-1.3.60.jar (4 KB at 42.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.1.RELEASE/spring-context-5.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.2.1.RELEASE/spring-boot-starter-2.2.1.RELEASE.jar (397 B at 5.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.2.1.RELEASE/spring-boot-autoconfigure-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.60/kotlin-stdlib-1.3.60.jar (1298 KB at 2569.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.2.1.RELEASE/spring-boot-starter-logging-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.1.RELEASE/spring-context-5.2.1.RELEASE.jar (1188 KB at 2394.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.2.1.RELEASE/spring-boot-2.2.1.RELEASE.jar (1015 KB at 1965.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.2.1.RELEASE/spring-boot-starter-logging-2.2.1.RELEASE.jar (405 B at 0.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.12.1/log4j-to-slf4j-2.12.1.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.12.1/log4j-to-slf4j-2.12.1.jar (18 KB at 30.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.12.1/log4j-api-2.12.1.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar (284 KB at 482.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar
Downloaded:9http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.2.1.RELEASE/spring-boot-autoconfigure-2.2.1.RELEASE.jar (1356 KB at 2208.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar
Downloaded:0http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar (5 KB at 7.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.1.RELEASE/spring-core-5.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar (25 KB at 37.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.1.RELEASE/spring-jcl-5.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.12.1/log4j-api-2.12.1.jar (271 KB at 407.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.25/snakeyaml-1.25.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.1.RELEASE/spring-jcl-5.2.1.RELEASE.jar (24 KB at 33.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.2.1.RELEASE/spring-boot-starter-test-2.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar (461 KB at 649.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.2.1.RELEASE/spring-boot-test-2.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.2.1.RELEASE/spring-boot-starter-test-2.2.1.RELEASE.jar (402 B at 0.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.2.1.RELEASE/spring-boot-test-autoconfigure-2.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.25/snakeyaml-1.25.jar (297 KB at 376.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.2.1.RELEASE/spring-boot-test-2.2.1.RELEASE.jar (206 KB at 241.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.2.1.RELEASE/spring-boot-test-autoconfigure-2.2.1.RELEASE.jar (154 KB at 180.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar (30 KB at 32.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar (218 KB at 244.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar (118 KB at 125.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar (53 KB at 55.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.5.2/junit-jupiter-5.5.2.jar
Downloaded:3http://repo.maven.apache.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.jar (113 KB at 117.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.1.0/mockito-junit-jupiter-3.1.0.jar
Downloaded:4http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.5.2/junit-jupiter-5.5.2.jar (7 KB at 6.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.13.2/assertj-core-3.13.2.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/spring-core/5.2.1.RELEASE/spring-core-5.2.1.RELEASE.jar (1399 KB at 1441.3 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.jar (44 KB at 44.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.1.0/mockito-junit-jupiter-3.1.0.jar (5 KB at 5.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar (30 KB at 29.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.1.RELEASE/spring-test-5.2.1.RELEASE.jar
Downloaded:Bhttp://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 17.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.3/xmlunit-core-2.6.3.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.jar (121 KB at 116.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.2.1.RELEASE/spring-boot-starter-web-2.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.2.1.RELEASE/spring-boot-starter-web-2.2.1.RELEASE.jar (403 B at 0.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.2.1.RELEASE/spring-boot-starter-json-2.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.3/xmlunit-core-2.6.3.jar (165 KB at 149.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.10.0/jackson-datatype-jdk8-2.10.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.2.1.RELEASE/spring-boot-starter-json-2.2.1.RELEASE.jar (403 B at 0.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.10.0/jackson-datatype-jsr310-2.10.0.jar
Downloaded:2http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.10.0/jackson-datatype-jdk8-2.10.0.jar (34 KB at 29.3 KB/sec)
Downloading:2http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.10.0/jackson-module-parameter-names-2.10.0.jar
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.10.0/jackson-datatype-jsr310-2.10.0.jar (104 KB at 88.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.2.1.RELEASE/spring-boot-starter-tomcat-2.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.10.0/jackson-module-parameter-names-2.10.0.jar (10 KB at 7.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.27/tomcat-embed-core-9.0.27.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.60/kotlin-reflect-1.3.60.jar (2803 KB at 2348.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.27/tomcat-embed-el-9.0.27.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.1.RELEASE/spring-test-5.2.1.RELEASE.jar (657 KB at 553.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.27/tomcat-embed-websocket-9.0.27.jar
Downloaded:4http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.2.1.RELEASE/spring-boot-starter-tomcat-2.2.1.RELEASE.jar (404 B at 0.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.2.1.RELEASE/spring-boot-starter-validation-2.2.1.RELEASE.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-validation/2.2.1.RELEASE/spring-boot-starter-validation-2.2.1.RELEASE.jar (406 B at 0.3 KB/sec)
Downloading:1http://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.1/jakarta.validation-api-2.0.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.27/tomcat-embed-el-9.0.27.jar (249 KB at 189.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.1/jakarta.validation-api-2.0.1.jar (91 KB at 69.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.27/tomcat-embed-websocket-9.0.27.jar (260 KB at 197.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar (60 KB at 43.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.1.RELEASE/spring-web-5.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar (67 KB at 48.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.1.RELEASE/spring-beans-5.2.1.RELEASE.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.1.RELEASE/spring-beans-5.2.1.RELEASE.jar (669 KB at 386.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.1.RELEASE/spring-webmvc-5.2.1.RELEASE.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar (1129 KB at 612.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.1.RELEASE/spring-aop-5.2.1.RELEASE.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.2.1.RELEASE/spring-web-5.2.1.RELEASE.jar (1382 KB at 703.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.1.RELEASE/spring-expression-5.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.2.1.RELEASE/spring-aop-5.2.1.RELEASE.jar (364 KB at 179.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.2.1.RELEASE/spring-boot-starter-webflux-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.2.1.RELEASE/spring-boot-starter-webflux-2.2.1.RELEASE.jar (408 B at 0.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.2.1.RELEASE/spring-boot-starter-reactor-netty-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.1.RELEASE/spring-expression-5.2.1.RELEASE.jar (276 KB at 132.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.jar
Downloaded:7http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.2.1.RELEASE/spring-boot-starter-reactor-netty-2.2.1.RELEASE.jar (411 B at 0.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.43.Final/netty-codec-http-4.1.43.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.27/tomcat-embed-core-9.0.27.jar (3285 KB at 1500.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.43.Final/netty-codec-4.1.43.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.1.RELEASE/spring-webmvc-5.2.1.RELEASE.jar (924 KB at 419.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.43.Final/netty-codec-http2-4.1.43.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.jar (496 KB at 218.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.43.Final/netty-handler-4.1.43.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.43.Final/netty-codec-http-4.1.43.Final.jar (581 KB at 251.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.43.Final/netty-handler-proxy-4.1.43.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.43.Final/netty-codec-4.1.43.Final.jar (311 KB at 134.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.43.Final/netty-codec-socks-4.1.43.Final.jar
Downloaded:2http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.43.Final/netty-handler-proxy-4.1.43.Final.jar (22 KB at 9.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.43.Final/netty-codec-socks-4.1.43.Final.jar (117 KB at 49.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.2.1.RELEASE/spring-webflux-5.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar (233 KB at 95.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.43.Final/netty-codec-http2-4.1.43.Final.jar (448 KB at 182.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.43.Final/netty-handler-4.1.43.Final.jar (431 KB at 176.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final-linux-x86_64.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.jar (13 KB at 5.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.jar (55 KB at 21.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final-linux-x86_64.jar (111 KB at 43.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.jar
Downloaded:5http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.2.1.RELEASE/spring-webflux-5.2.1.RELEASE.jar (823 KB at 313.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar (271 KB at 103.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.2.1.RELEASE/spring-boot-starter-jdbc-2.2.1.RELEASE.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.2.1.RELEASE/spring-boot-starter-jdbc-2.2.1.RELEASE.jar (404 B at 0.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.jar
Downloaded:3http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar (33 KB at 12.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.1.RELEASE/spring-jdbc-5.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.jar (463 KB at 169.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.1.RELEASE/spring-tx-5.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.jar (150 KB at 54.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.3.0.RELEASE/reactor-core-3.3.0.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.13.2/assertj-core-3.13.2.jar (4374 KB at 1564.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.2.1.RELEASE/spring-jdbc-5.2.1.RELEASE.jar (397 KB at 142.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.3.0.RELEASE/reactor-test-3.3.0.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar (592 KB at 211.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/kotlin/reactor-kotlin-extensions/1.0.0.RELEASE/reactor-kotlin-extensions-1.0.0.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar (12 KB at 3.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.60/kotlin-test-junit-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/kotlin/reactor-kotlin-extensions/1.0.0.RELEASE/reactor-kotlin-extensions-1.0.0.RELEASE.jar (42 KB at 14.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.60/kotlin-test-annotations-common-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.60/kotlin-test-junit-1.3.60.jar (5 KB at 1.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.60/kotlin-test-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.3.0.RELEASE/reactor-test-3.3.0.RELEASE.jar (112 KB at 39.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.60/kotlin-test-common-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.60/kotlin-test-annotations-common-1.3.60.jar (2 KB at 0.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.1/hamcrest-core-2.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.1.RELEASE/spring-tx-5.2.1.RELEASE.jar (307 KB at 107.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.5.2/junit-jupiter-engine-5.5.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.60/kotlin-test-common-1.3.60.jar (5 KB at 1.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.60/kotlin-test-1.3.60.jar (31 KB at 10.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.5.2/junit-platform-engine-1.5.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/2.1/hamcrest-core-2.1.jar (2 KB at 0.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar (3 KB at 0.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.5.2/junit-platform-commons-1.5.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (8 KB at 2.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.5.2/junit-jupiter-api-5.5.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.5.2/junit-platform-commons-1.5.2.jar (90 KB at 30.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.5.2/junit-jupiter-params-5.5.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.5.2/junit-jupiter-engine-5.5.2.jar (215 KB at 72.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.5.2/junit-vintage-engine-5.5.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.5.2/junit-platform-engine-1.5.2.jar (161 KB at 54.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.1.0/mockito-core-3.1.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.5.2/junit-jupiter-api-5.5.2.jar (139 KB at 46.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.2/byte-buddy-1.10.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.5.2/junit-vintage-engine-5.5.2.jar (56 KB at 18.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.2/byte-buddy-agent-1.10.2.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.2/byte-buddy-agent-1.10.2.jar (253 KB at 80.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.5.2/junit-jupiter-params-5.5.2.jar (537 KB at 171.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.jar (42 KB at 13.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hubspot/jinjava/jinjava/2.5.2/jinjava-2.5.2.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar (55 KB at 17.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 KB at 12.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.3.0.RELEASE/reactor-core-3.3.0.RELEASE.jar (1492 KB at 464.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar
Downloaded: http://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar (12 KB at 3.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.1.0/mockito-core-3.1.0.jar (578 KB at 177.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar
Downloaded:5http://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (9 KB at 2.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.1-GA/javassist-3.24.1-GA.jar
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar (4 KB at 1.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.3/jsoup-1.10.3.jar
Downloaded: http://repo.maven.apache.org/maven2/com/hubspot/jinjava/jinjava/2.5.2/jinjava-2.5.2.jar (525 KB at 158.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.2/re2j-1.2.jar
Downloaded: http://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.2/re2j-1.2.jar (124 KB at 36.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar
Downloaded:5http://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.3/jsoup-1.10.3.jar (348 KB at 98.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-net/commons-net/3.3/commons-net-3.3.jar
Downloaded: http://repo.maven.apache.org/maven2/org/javassist/javassist/3.24.1-GA/javassist-3.24.1-GA.jar (760 KB at 213.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/3.0.1/annotations-3.0.1.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar (493 KB at 137.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/3.0.1/annotations-3.0.1.jar (38 KB at 10.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.0/jackson-annotations-2.10.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.10.0/jackson-annotations-2.10.0.jar (67 KB at 18.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.0/jackson-core-2.10.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/commons-net/commons-net/3.3/commons-net-3.3.jar (275 KB at 73.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/obermuhlner/big-math/2.0.0/big-math-2.0.0.jar
Downloaded:1http://repo.maven.apache.org/maven2/ch/obermuhlner/big-math/2.0.0/big-math-2.0.0.jar (40 KB at 10.4 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.0/jackson-core-2.10.0.jar (341 KB at 89.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.200/h2-1.4.200.jar
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.jar (70 KB at 17.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar (1369 KB at 337.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.10.0/jackson-dataformat-yaml-2.10.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.jar (110 KB at 26.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.jar
Downloaded:2http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.10.0/jackson-dataformat-yaml-2.10.0.jar (46 KB at 11.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.jar
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.jar (21 KB at 4.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar
Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.2/byte-buddy-1.10.2.jar (3265 KB at 779.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.29/slf4j-ext-1.7.29.jar
Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.jar (141 KB at 33.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar (91 KB at 21.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.jar
Downloaded:2http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.29/slf4j-ext-1.7.29.jar (38 KB at 8.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.27/tomcat-jdbc-9.0.27.jar
Downloaded:2http://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.jar (25 KB at 5.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.27/tomcat-juli-9.0.27.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.jar (132 KB at 30.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.jar (2515 KB at 588.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.12.4/hazelcast-3.12.4.jar
Downloaded:4http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.27/tomcat-jdbc-9.0.27.jar (147 KB at 34.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
Downloaded:4http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.27/tomcat-juli-9.0.27.jar (47 KB at 10.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.2.1.RELEASE/spring-boot-starter-actuator-2.2.1.RELEASE.jar
Downloaded:5http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar (51 KB at 11.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.2.1.RELEASE/spring-boot-actuator-autoconfigure-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.2.1.RELEASE/spring-boot-starter-actuator-2.2.1.RELEASE.jar (405 B at 0.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.2.1.RELEASE/spring-boot-actuator-2.2.1.RELEASE.jar
Downloaded: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar (235 KB at 53.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.3.1/micrometer-core-1.3.1.jar
Downloaded: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.200/h2-1.4.200.jar (2250 KB at 512.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.11/HdrHistogram-2.1.11.jar
Downloaded: http://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.11/HdrHistogram-2.1.11.jar (121 KB at 27.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar
Downloaded: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.3.1/micrometer-core-1.3.1.jar (460 KB at 102.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.3.1/micrometer-registry-prometheus-1.3.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar (30 KB at 6.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar
Downloaded:2http://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.3.1/micrometer-registry-prometheus-1.3.1.jar (26 KB at 5.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.2.1.RELEASE/spring-boot-actuator-autoconfigure-2.2.1.RELEASE.jar (482 KB at 106.4 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar (59 KB at 12.8 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar (6 KB at 1.2 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.2.1.RELEASE/spring-boot-actuator-2.2.1.RELEASE.jar (561 KB at 121.3 KB/sec)
Downloaded:Khttp://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.12.4/hazelcast-3.12.4.jar (11564 KB at 2030.5 KB/sec)
[INFO]
[INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom (770 B at 35.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom (5 KB at 245.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (6 KB at 262.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar
Downloaded:5http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar (5 KB at 199.4 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar (163 KB at 2666.5 KB/sec)
[INFO]
[INFO] --- jacoco-maven-plugin:0.8.2:prepare-agent (default) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom (5 KB at 210.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom (3 KB at 132.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom (24 KB at 988.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom (3 KB at 115.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom (4 KB at 162.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom (2 KB at 73.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom (3 KB at 102.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom (3 KB at 109.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom (3 KB at 107.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom (2 KB at 79.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom (2 KB at 103.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom (2 KB at 73.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom (2 KB at 85.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom (18 KB at 805.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom (2 KB at 77.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom (4 KB at 191.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom (6 KB at 262.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom
Downloaded: http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom (3 KB at 113.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom
Downloaded: http://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom (738 B at 37.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1.pom (4 KB at 175.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom
Downloaded: http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom (8 KB at 379.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom (4 KB at 177.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom (6 KB at 298.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom (15 KB at 678.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom (3 KB at 145.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom (2 KB at 82.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom (3 KB at 125.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom (6 KB at 268.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom
Downloaded: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (13 KB at 550.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom (4 KB at 172.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom (3 KB at 79.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom (3 KB at 143.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 KB at 522.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom (4 KB at 170.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom (4 KB at 145.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom (4 KB at 154.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom (2 KB at 98.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar
Downloading: http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar
Downloading: http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar
Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar (17 KB at 404.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar
Downloaded: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar (30 KB at 753.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar
Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar (155 KB at 2034.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar
Downloaded:2http://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 672.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar
Downloaded:2http://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 631.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
Downloaded:3http://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 148.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar
Downloaded: http://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 335.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar
Downloaded:5http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar (298 KB at 2082.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar (264 KB at 1422.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar (172 KB at 792.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar
Downloaded:7http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar (111 KB at 513.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar
Downloaded:8http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar (78 KB at 349.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar (32 KB at 128.2 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar (50 KB at 192.2 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar (125 KB at 467.3 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar (1185 KB at 3748.5 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (575 KB at 1806.8 KB/sec)
[INFO] argLine set to -javaagent:/home/r/.m2/repository/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar=destfile=/home/r/repo/target/jacoco.exec,excludes=**/rest/**:**/Fake*.*:**/SELECTBaseListener.*:**/SELECTBaseVisitor.*:**/SELECTLexer.*:**/SELECTListener.*:**/SELECTParser.*:**/SELECTVisitor.*
[INFO]
[INFO] --- antlr4-maven-plugin:4.1:antlr4 (default) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom (865 B at 42.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom (4 KB at 185.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.pom (5 KB at 223.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.pom (2 KB at 96.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.pom (3 KB at 107.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5.pom (11 KB at 505.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom (8 KB at 364.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.pom (13 KB at 580.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.jar
Downloading: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar
Downloaded:6http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar (25 KB at 697.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.jar
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar (146 KB at 1560.7 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.jar (247 KB at 2599.0 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.jar (164 KB at 1688.7 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.jar (231 KB at 1733.8 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.jar (605 KB at 3319.1 KB/sec)
[INFO] ANTLR 4: Processing source directory /home/r/repo/src/main/kotlin
[INFO] Processing grammar: com/github/mgramin/sqlboot/sql/select/impl/parser/SELECT.g4
[INFO]
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom (5 KB at 206.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom (6 KB at 292.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom (6 KB at 272.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (5 KB at 212.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom (2 KB at 83.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom (4 KB at 164.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom
Downloaded: http://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom (9 KB at 388.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom (3 KB at 134.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar
Downloaded:6http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (9 KB at 223.9 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar (50 KB at 992.5 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar (152 KB at 2221.7 KB/sec)
Downloaded:2http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar (78 KB at 1242.4 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar (256 KB at 3154.1 KB/sec)
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 7 resources
[INFO]
[INFO] --- kotlin-maven-plugin:1.3.60:compile (compile) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.pom (2 KB at 83.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.4/maven-plugin-tools-3.4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.4/maven-plugin-tools-3.4.pom (14 KB at 632.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.60/kotlin-compiler-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.60/kotlin-compiler-1.3.60.pom (3 KB at 113.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.60/kotlin-script-runtime-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.60/kotlin-script-runtime-1.3.60.pom (2 KB at 54.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.pom (2 KB at 62.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.60/kotlin-scripting-compiler-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.60/kotlin-scripting-compiler-1.3.60.pom (2 KB at 89.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.60/kotlin-scripting-common-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.60/kotlin-scripting-common-1.3.60.pom (2 KB at 84.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.2.1/kotlinx-coroutines-core-1.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.2.1/kotlinx-coroutines-core-1.2.1.pom (2 KB at 71.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.60/kotlin-scripting-jvm-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.60/kotlin-scripting-jvm-1.3.60.pom (2 KB at 86.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl/1.3.60/kotlin-scripting-compiler-impl-1.3.60.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl/1.3.60/kotlin-scripting-compiler-impl-1.3.60.pom (3 KB at 104.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.pom (891 B at 41.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.7/plexus-compiler-2.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.7/plexus-compiler-2.7.pom (5 KB at 229.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.pom (711 B at 34.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.pom (792 B at 38.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.7/plexus-compilers-2.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.7/plexus-compilers-2.7.pom (2 KB at 64.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.60/kotlin-compiler-1.3.60.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.60/kotlin-script-runtime-1.3.60.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.jar
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.60/kotlin-scripting-compiler-1.3.60.jar
Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.jar (14 KB at 632.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.60/kotlin-scripting-common-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.60/kotlin-script-runtime-1.3.60.jar (42 KB at 1210.0 KB/sec)
Downloading:7http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.2.1/kotlinx-coroutines-core-1.2.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.60/kotlin-scripting-common-1.3.60.jar (169 KB at 1586.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.60/kotlin-scripting-jvm-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.60/kotlin-scripting-compiler-1.3.60.jar (282 KB at 2146.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl/1.3.60/kotlin-scripting-compiler-impl-1.3.60.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.60/kotlin-scripting-jvm-1.3.60.jar (168 KB at 869.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.jar
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.jar (560 KB at 2443.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.jar (26 KB at 109.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar (5 KB at 18.3 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-impl/1.3.60/kotlin-scripting-compiler-impl-1.3.60.jar (289 KB at 1146.2 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar (20 KB at 74.6 KB/sec)
Downloaded:Khttp://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.2.1/kotlinx-coroutines-core-1.2.1.jar (1089 KB at 3076.2 KB/sec)
Downloaded:Khttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.60/kotlin-compiler-1.3.60.jar (39375 KB at 10216.6 KB/sec)
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (java-compile) @ sql-boot ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 6 source files to /home/r/repo/target/classes
[INFO] /home/r/repo/src/main/generated-sources/com/github/mgramin/sqlboot/sql/select/impl/parser/SELECTParser.java: Some input files use or override a deprecated API.
[INFO] /home/r/repo/src/main/generated-sources/com/github/mgramin/sqlboot/sql/select/impl/parser/SELECTParser.java: Recompile with -Xlint:deprecation for details.
[INFO]
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ sql-boot ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 4 resources
[INFO]
[INFO] --- kotlin-maven-plugin:1.3.60:test-compile (test-compile) @ sql-boot ---
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (java-test-compile) @ sql-boot ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.pom (12 KB at 508.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom (2 KB at 61.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom (16 KB at 517.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.pom (4 KB at 164.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.pom (2 KB at 87.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.pom (8 KB at 330.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom (5 KB at 199.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom (5 KB at 183.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.pom (3 KB at 136.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom
Downloaded: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom (16 KB at 672.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar (14 KB at 409.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar
Downloaded:5http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.2/surefire-logger-api-2.22.2.jar (14 KB at 352.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar (39 KB at 611.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.2/surefire-api-2.22.2.jar (182 KB at 1710.8 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar (310 KB at 2341.0 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.2/surefire-booter-2.22.2.jar (268 KB at 1936.1 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.jar (109 KB at 759.5 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.2/maven-surefire-common-2.22.2.jar (516 KB at 2312.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.2/surefire-junit-platform-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.2/surefire-junit-platform-2.22.2.pom (7 KB at 309.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-providers/2.22.2/surefire-providers-2.22.2.pom (3 KB at 121.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.pom (3 KB at 113.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.pom (2 KB at 57.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.pom (3 KB at 116.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.pom (2 KB at 98.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.pom (2 KB at 82.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.2/surefire-junit-platform-2.22.2.jar
Downloading: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar (3 KB at 91.9 KB/sec)
Downloading:4http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar
Downloaded:7http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.jar (132 KB at 3215.8 KB/sec)
Downloaded:7http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar (7 KB at 302.4 KB/sec)
Downloaded:7http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.jar (77 KB at 1652.9 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.2/surefire-junit-platform-2.22.2.jar (65 KB at 1313.7 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.jar (93 KB at 1467.1 KB/sec)
[INFO]
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest
21:10:36.743 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:10:36.787 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)]
21:10:36.863 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper]
21:10:36.938 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to process context configuration [ContextConfigurationAttributes@152c4495 declaringClass = 'com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', locations = '{}', inheritLocations = true, initializers = '{class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
21:10:37.038 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest]
21:10:37.041 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest]: using defaults.
21:10:37.042 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
21:10:37.093 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@19dc0d32, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@70b2fa10, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@7c96c85, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@b0f2d91, org.springframework.test.context.support.DirtiesContextTestExecutionListener@7243145f, org.springframework.test.context.transaction.TransactionalTestExecutionListener@15c6027d, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5927f904, org.springframework.test.context.event.EventPublishingTestExecutionListener@2bb62414, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@413d2cd1, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@644d1b61, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2443135, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@184823ed, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@30bbcf91]
21:10:37.096 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
21:10:37.165 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@790d8fdd, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:37.166 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to load context from [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
21:10:37.167 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
21:10:37.296 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:10:37.442 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loading from YAML: class path resource [application.yml]
21:10:37.533 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Merging document (no matchers set): {conf={dialects=[{name=h2, paginationQueryTemplate={{ query }} offset {{ uri.pageSize()*(uri.pageNumber()-1) }} limit {{ uri.pageSize() }}
}], endpoints=[{name=h2, host=127.0.0.1, confDir=conf/h2/md/database, properties={sql_dialect=h2, jdbc_url=jdbc:h2:mem:;INIT=RUNSCRIPT FROM 'classpath:schema.sql';, jdbc_driver_class_name=org.h2.Driver, jdbc.user=, jdbc.password=, os.query.rest.port=8082, visible=false, description=Embedded db for unit tests only}}]}, spring={jmx={enabled=false}}}
21:10:37.533 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loaded 1 document from YAML resource: class path resource [application.yml]
21:10:37.845 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:10:37.846 [main] DEBUG org.springframework.test.context.support.AnnotationConfigContextLoader - Registering component classes: {class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}
21:10:37.922 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@447fa959
21:10:37.952 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
21:10:38.512 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:38.563 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:38.653 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:38.654 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:39.309 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.context.ImportsContextCustomizer$ImportsCleanupPostProcessor'
21:10:39.536 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
21:10:39.548 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
21:10:39.550 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBeanDefinitionValidator'
21:10:40.686 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
21:10:40.689 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
21:10:40.690 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
21:10:40.696 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
21:10:40.697 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
21:10:40.702 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
21:10:40.703 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
21:10:40.703 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
21:10:40.703 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory'
21:10:40.707 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'methodValidationPostProcessor'
21:10:40.729 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
21:10:40.774 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceInitializerPostProcessor'
21:10:40.785 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
21:10:40.786 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
21:10:40.794 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
21:10:40.815 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
21:10:40.822 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@447fa959'
21:10:40.827 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
21:10:40.827 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
21:10:40.841 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
21:10:40.847 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource'
21:10:40.856 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor'
21:10:40.857 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
21:10:41.072 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
21:10:41.072 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
21:10:41.099 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleEndpointList'
21:10:41.100 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList$$EnhancerBySpringCGLIB$$437daf51] - unable to determine constructor/method parameter names
21:10:41.522 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
21:10:41.524 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
21:10:41.526 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
21:10:41.528 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
21:10:41.529 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
21:10:41.544 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@447fa959'
21:10:41.544 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
21:10:41.547 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
21:10:41.550 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
21:10:41.552 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
21:10:41.554 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule'
21:10:41.578 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
21:10:41.581 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper'
21:10:41.582 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@447fa959'
21:10:41.583 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
21:10:41.589 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule'
21:10:41.590 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
21:10:41.610 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
21:10:41.896 [main] WARN org.springframework.http.converter.json.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
21:10:41.957 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$DefaultCodecsConfiguration'
21:10:41.959 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultCodecCustomizer'
21:10:41.960 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:10:41.965 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.codec-org.springframework.boot.autoconfigure.codec.CodecProperties'
21:10:41.968 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'defaultCodecCustomizer' via factory method to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:10:41.968 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'defaultCodecCustomizer' via factory method to bean named 'spring.codec-org.springframework.boot.autoconfigure.codec.CodecProperties'
21:10:41.971 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
21:10:41.973 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonCodecCustomizer'
21:10:41.975 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper'
21:10:41.976 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
21:10:41.978 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
21:10:41.980 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultValidator'
21:10:42.072 [main] DEBUG org.jboss.logging - Logging Provider: org.jboss.logging.Log4j2LoggerProvider
21:10:42.074 [main] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.18.Final
21:10:42.094 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable.
21:10:42.119 [main] DEBUG org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL
21:10:42.137 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable.
21:10:42.147 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
21:10:42.148 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
21:10:42.149 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1
21:10:42.156 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration.
21:10:42.157 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via user class loader
21:10:42.159 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL
21:10:42.160 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
21:10:42.160 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only.
21:10:42.489 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
21:10:42.489 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver.
21:10:42.489 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
21:10:42.489 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
21:10:42.489 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
21:10:42.538 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
21:10:42.541 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder'
21:10:42.542 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
21:10:42.546 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
21:10:42.551 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastServerConfiguration'
21:10:42.553 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration'
21:10:42.554 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.hazelcast-org.springframework.boot.autoconfigure.hazelcast.HazelcastProperties'
21:10:42.557 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
21:10:42.559 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
21:10:42.560 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:10:42.572 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:10:42.601 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.h2.Driver found in Thread context class loader sun.misc.Launcher$AppClassLoader@18b4aac2
21:10:42.638 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker'
21:10:42.640 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:10:42.640 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@447fa959'
21:10:42.665 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:42.666 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration:
21:10:42.670 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false
21:10:42.671 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true
21:10:42.671 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none
21:10:42.671 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none
21:10:42.671 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery.............none
21:10:42.671 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000
21:10:42.671 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none
21:10:42.671 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none
21:10:42.672 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none
21:10:42.672 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=<masked>}
21:10:42.672 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."org.h2.Driver"
21:10:42.673 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{}
21:10:42.673 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none
21:10:42.673 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................600000
21:10:42.673 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1
21:10:42.673 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false
21:10:42.673 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
21:10:42.673 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........0
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................1800000
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................10
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................10
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - password........................<masked>
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-1"
21:10:42.674 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false
21:10:42.675 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false
21:10:42.675 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none
21:10:42.675 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none
21:10:42.675 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal
21:10:42.675 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default
21:10:42.675 [main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"sa"
21:10:42.675 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000
21:10:42.675 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
21:10:43.382 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:testdb user=SA
21:10:43.387 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
21:10:43.437 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:43.439 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/schema.sql]
21:10:43.459 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema hr if exists cascade
21:10:43.460 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema hr
21:10:43.487 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Pool stats (total=1, active=1, idle=0, waiting=0)
21:10:43.490 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.users ( id integer, first_name varchar(30), last_name varchar(31), email varchar(50), constraint users_pk primary key (id, first_name) )
21:10:43.492 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.users is 'all system users'
21:10:43.502 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:testdb user=SA
21:10:43.506 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index hr.users_email_idx on hr.users (email, last_name)
21:10:43.509 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:testdb user=SA
21:10:43.510 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:testdb user=SA
21:10:43.511 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:testdb user=SA
21:10:43.512 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:testdb user=SA
21:10:43.513 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:testdb user=SA
21:10:43.514 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:testdb user=SA
21:10:43.515 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:testdb user=SA
21:10:43.516 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:testdb user=SA
21:10:43.516 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=10, active=1, idle=9, waiting=0)
21:10:43.534 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.users_view_materialized as select * from hr.users
21:10:43.536 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.jobs ( id integer primary key, name varchar(30), description varchar(100), constraint jobs_pk primary key (id) )
21:10:43.537 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.jobs is 'all jobs'
21:10:43.539 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.persons ( id integer primary key, id_job integer, id_user integer, constraint persons_pk primary key (id) )
21:10:43.540 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.persons is 'all persons'
21:10:43.558 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_jobs_fk foreign key (id_job) references hr.jobs (id)
21:10:43.562 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_users_fk foreign key (id_user) references hr.users (id)
21:10:43.563 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.persons_view_materialized as select * from hr.persons
21:10:43.565 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.countries ( id integer primary key, name varchar(50), population integer, constraint countries_pk primary key (id) )
21:10:43.566 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities ( id integer primary key, name varchar(50), id_country integer, constraint cities_pk primary key (id) )
21:10:43.568 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities_2 ( id integer primary key, name varchar(50), id_country integer, constraint cities_2_pk primary key (id) )
21:10:43.568 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema bookings if exists cascade
21:10:43.569 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema bookings
21:10:43.571 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.aircrafts ( aircraft_code character(3) not null, model text not null, range integer not null, constraint aircrafts_range_check check ((range > 0)) )
21:10:43.572 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.airports ( airport_code character(3) not null, airport_name text not null, city text not null, longitude double precision not null, latitude double precision not null, timezone text not null )
21:10:43.573 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.boarding_passes ( ticket_no character(13) not null, flight_id integer not null, boarding_no integer not null, seat_no character varying(4) not null )
21:10:43.575 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.bookings ( book_ref character(6) not null, book_date timestamp not null, total_amount numeric(10, 2) not null )
21:10:43.576 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.flights ( flight_id integer not null, flight_no character(6) not null, scheduled_departure timestamp not null, scheduled_arrival timestamp not null, departure_airport character(3) not null, arrival_airport character(3) not null, status character varying(20) not null, aircraft_code character(3) not null, actual_departure timestamp, actual_arrival timestamp )
21:10:43.576 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/schema.sql] in 137 ms.
21:10:43.581 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:43.581 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:43.581 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/data.sql]
21:10:43.590 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (1, 'mkyong', 'mkyong@gmail.com')
21:10:43.591 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (2, 'alex', 'alex@yahoo.com')
21:10:43.592 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (4, 'joel', 'joel@gmail.com')
21:10:43.593 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.jobs (id, name, description) values (1, 'driver', 'driver')
21:10:43.593 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/data.sql] in 12 ms.
21:10:43.594 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
21:10:43.597 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
21:10:43.599 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
21:10:43.603 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$TomcatDataSourcePoolMetadataProviderConfiguration'
21:10:43.608 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatPoolDataSourceMetadataProvider'
21:10:43.610 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration'
21:10:43.613 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration'
21:10:43.615 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration'
21:10:43.620 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointAdaptersConfiguration'
21:10:43.623 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration$LegacyReactiveHealthEndpointCompatibilityConfiguration'
21:10:43.626 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthIndicatorRegistry'
21:10:43.628 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthContributorRegistry'
21:10:43.628 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.ReactiveHealthEndpointConfiguration'
21:10:43.632 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicator'
21:10:43.632 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration'
21:10:43.637 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
21:10:43.641 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
21:10:43.648 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pingHealthContributor'
21:10:43.648 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration'
21:10:43.689 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbHealthContributor'
21:10:43.689 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration'
21:10:43.690 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' via constructor to bean named 'dataSource'
21:10:43.701 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource'
21:10:43.712 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointGroups'
21:10:43.713 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration'
21:10:43.717 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointProperties'
21:10:43.717 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration'
21:10:43.720 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:43.725 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointProperties' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:43.738 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@447fa959'
21:10:43.738 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'healthEndpointProperties'
21:10:43.744 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusAggregator'
21:10:43.744 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'healthEndpointProperties'
21:10:43.751 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper'
21:10:43.751 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'healthEndpointProperties'
21:10:43.761 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator'
21:10:43.761 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'pingHealthContributor'
21:10:43.761 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'dbHealthContributor'
21:10:43.761 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:10:43.777 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'reactiveHealthContributorRegistry'
21:10:43.780 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration'
21:10:43.782 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthAggregator'
21:10:43.782 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthAggregator' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:43.788 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusHttpMapper'
21:10:43.788 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthStatusHttpMapper' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:43.790 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthIndicatorRegistry'
21:10:43.791 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthContributorRegistry'
21:10:43.791 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@447fa959'
21:10:43.792 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:10:43.801 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthIndicatorRegistry' via factory method to bean named 'healthContributorRegistry'
21:10:43.804 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpoint'
21:10:43.805 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry'
21:10:43.805 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups'
21:10:43.812 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
21:10:43.814 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
21:10:43.817 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
21:10:43.819 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration'
21:10:43.821 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'envInfoContributor'
21:10:43.822 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'envInfoContributor' via factory method to bean named 'environment'
21:10:43.825 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties'
21:10:43.829 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration'
21:10:43.831 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'infoEndpoint'
21:10:43.833 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration'
21:10:43.835 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointOperationParameterMapper'
21:10:43.843 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor'
21:10:43.844 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment'
21:10:43.849 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
21:10:43.851 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'micrometerClock'
21:10:43.854 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesMeterFilter'
21:10:43.855 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:43.866 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:43.878 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration'
21:10:43.880 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusConfig'
21:10:43.881 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties'
21:10:43.887 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusConfig' via factory method to bean named 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties'
21:10:43.895 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusMeterRegistry'
21:10:43.896 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'collectorRegistry'
21:10:43.899 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'prometheusConfig'
21:10:43.899 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'collectorRegistry'
21:10:43.899 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'micrometerClock'
21:10:43.940 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
21:10:43.941 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration'
21:10:43.944 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:43.953 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmGcMetrics'
21:10:43.953 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration'
21:10:43.962 [main] DEBUG io.micrometer.core.util.internal.logging.InternalLoggerFactory - Using SLF4J as the default logging framework
21:10:43.968 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmMemoryMetrics'
21:10:43.971 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmThreadMetrics'
21:10:43.974 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'classLoaderMetrics'
21:10:43.977 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'logbackMetrics'
21:10:43.977 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration'
21:10:43.982 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'uptimeMetrics'
21:10:43.982 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration'
21:10:43.987 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'processorMetrics'
21:10:43.990 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileDescriptorMetrics'
21:10:44.050 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration'
21:10:44.052 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration'
21:10:44.052 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' via constructor to bean named 'prometheusMeterRegistry'
21:10:44.073 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration'
21:10:44.082 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration'
21:10:44.084 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
21:10:44.086 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gsonBuilder'
21:10:44.087 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardGsonBuilderCustomizer'
21:10:44.087 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
21:10:44.092 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardGsonBuilderCustomizer' via factory method to bean named 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
21:10:44.095 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gsonBuilder' via factory method to bean named 'standardGsonBuilderCustomizer'
21:10:44.116 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gson'
21:10:44.117 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gson' via factory method to bean named 'gsonBuilder'
21:10:44.165 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
21:10:44.167 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter'
21:10:44.168 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:10:44.184 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
21:10:44.186 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
21:10:44.186 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
21:10:44.195 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
21:10:44.196 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
21:10:44.198 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
21:10:44.200 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters'
21:10:44.236 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
21:10:44.239 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateBuilder'
21:10:44.241 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRestTemplateCustomizer'
21:10:44.241 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration'
21:10:44.244 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateExchangeTagsProvider'
21:10:44.248 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:10:44.248 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'restTemplateExchangeTagsProvider'
21:10:44.248 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:44.256 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.WebClientMetricsConfiguration'
21:10:44.258 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultWebClientExchangeTagsProvider'
21:10:44.263 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsWebClientCustomizer'
21:10:44.263 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:10:44.263 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'defaultWebClientExchangeTagsProvider'
21:10:44.263 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:44.268 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration'
21:10:44.270 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration'
21:10:44.271 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7a2ffb0b'
21:10:44.272 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
21:10:44.273 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
21:10:44.275 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration'
21:10:44.276 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration'
21:10:44.278 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcTemplate'
21:10:44.278 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
21:10:44.280 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource'
21:10:44.280 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
21:10:44.294 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration'
21:10:44.295 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'namedParameterJdbcTemplate'
21:10:44.296 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate'
21:10:44.304 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration'
21:10:44.305 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration'
21:10:44.308 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder'
21:10:44.308 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
21:10:44.311 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
21:10:44.313 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration'
21:10:44.315 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager'
21:10:44.315 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'dataSource'
21:10:44.317 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers'
21:10:44.317 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration'
21:10:44.320 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties'
21:10:44.335 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration'
21:10:44.337 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration'
21:10:44.338 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration'
21:10:44.340 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration'
21:10:44.341 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionTemplate'
21:10:44.342 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager'
21:10:44.348 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorConfiguration$ReactorNetty'
21:10:44.349 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientResourceFactory'
21:10:44.358 [main] DEBUG reactor.util.Loggers$LoggerFactory - Using Slf4j logging framework
21:10:44.403 [main] DEBUG io.netty.util.internal.logging.InternalLoggerFactory - Using SLF4J as the default logging framework
21:10:44.406 [main] DEBUG io.netty.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false
21:10:44.406 [main] DEBUG io.netty.util.internal.PlatformDependent0 - Java version: 8
21:10:44.408 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available
21:10:44.409 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.copyMemory: available
21:10:44.409 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Buffer.address: available
21:10:44.410 [main] DEBUG io.netty.util.internal.PlatformDependent0 - direct buffer constructor: available
21:10:44.411 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true
21:10:44.411 [main] DEBUG io.netty.util.internal.PlatformDependent0 - jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable prior to Java9
21:10:44.411 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.<init>(long, int): available
21:10:44.411 [main] DEBUG io.netty.util.internal.PlatformDependent - sun.misc.Unsafe: available
21:10:44.411 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.tmpdir: /tmp (java.io.tmpdir)
21:10:44.412 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model)
21:10:44.413 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: 1431830528 bytes
21:10:44.413 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1
21:10:44.414 [main] DEBUG io.netty.util.internal.CleanerJava6 - java.nio.ByteBuffer.cleaner(): available
21:10:44.414 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false
21:10:44.424 [main] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default LoopResources: DefaultLoopResources {prefix=reactor-http, daemon=true, selectCount=12, workerCount=12}
21:10:44.424 [main] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default ConnectionProvider: PooledConnectionProvider {name=http, poolFactory=reactor.netty.resources.ConnectionProvider$$Lambda$707/928509360@6b0783ba}
21:10:44.425 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientHttpConnector'
21:10:44.425 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactorClientHttpConnector' via factory method to bean named 'reactorClientResourceFactory'
21:10:44.450 [main] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv4Stack: false
21:10:44.450 [main] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv6Addresses: false
21:10:44.452 [main] DEBUG io.netty.util.NetUtil - Loopback interface: lo (lo, 127.0.0.1)
21:10:44.453 [main] DEBUG io.netty.util.NetUtil - /proc/sys/net/core/somaxconn: 128
21:10:44.488 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration'
21:10:44.490 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'clientConnectorCustomizer'
21:10:44.490 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'clientConnectorCustomizer' via factory method to bean named 'reactorClientHttpConnector'
21:10:44.492 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration$WebClientCodecsConfiguration'
21:10:44.493 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'exchangeStrategiesCustomizer'
21:10:44.494 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'defaultCodecCustomizer'
21:10:44.494 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'jacksonCodecCustomizer'
21:10:44.496 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration'
21:10:44.578 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration'
21:10:44.580 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties'
21:10:44.584 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
21:10:44.611 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext [1149217113] in cache under key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.611 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 0, missCount = 1]
21:10:44.629 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.629 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 1, missCount = 1]
21:10:44.636 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@790d8fdd, testMethod = getConnectionByName@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:44.644 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.645 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 2, missCount = 1]
21:10:44.645 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.645 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 3, missCount = 1]
21:10:44.916 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.916 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 4, missCount = 1]
21:10:44.970 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.970 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 5, missCount = 1]
21:10:44.972 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.972 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 6, missCount = 1]
21:10:44.972 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.972 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 7, missCount = 1]
21:10:44.976 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.976 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 8, missCount = 1]
21:10:44.978 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.979 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 9, missCount = 1]
21:10:44.981 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.981 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 10, missCount = 1]
21:10:44.982 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@790d8fdd, testMethod = getConnectionByName@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:44.995 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@55e595b4, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:44.995 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.995 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 11, missCount = 1]
21:10:44.996 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.996 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 12, missCount = 1]
21:10:44.998 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@55e595b4, testMethod = getConnectionsByMask@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:44.998 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.999 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 13, missCount = 1]
21:10:44.999 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:44.999 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 14, missCount = 1]
21:10:45.001 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.001 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 15, missCount = 1]
21:10:45.002 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.002 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 16, missCount = 1]
21:10:45.003 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.003 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 17, missCount = 1]
21:10:45.003 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.003 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 18, missCount = 1]
21:10:45.004 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.004 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 19, missCount = 1]
21:10:45.005 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.005 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 20, missCount = 1]
21:10:45.006 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.006 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 21, missCount = 1]
21:10:45.007 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@55e595b4, testMethod = getConnectionsByMask@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:45.008 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@6b1a0de8, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:45.009 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.009 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 22, missCount = 1]
21:10:45.009 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.010 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 23, missCount = 1]
21:10:45.011 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@6b1a0de8, testMethod = getConnections@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:45.012 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.012 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 24, missCount = 1]
21:10:45.012 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.012 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 25, missCount = 1]
21:10:45.014 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.014 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 26, missCount = 1]
21:10:45.016 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.016 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 27, missCount = 1]
21:10:45.016 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.016 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 28, missCount = 1]
21:10:45.017 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.017 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 29, missCount = 1]
21:10:45.017 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.017 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 30, missCount = 1]
21:10:45.018 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.019 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 31, missCount = 1]
21:10:45.019 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.019 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 32, missCount = 1]
21:10:45.020 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@6b1a0de8, testMethod = getConnections@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:45.023 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1149217113] from cache with key [[MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.024 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 33, missCount = 1]
21:10:45.024 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@eed890d testClass = SimpleEndpointListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@10f477e2 testClass = SimpleEndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6097fca9 key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.405 s - in com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest
[INFO] Running com.github.mgramin.sqlboot.model.dialect.DbDialectListTest
21:10:45.027 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:10:45.027 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)]
21:10:45.027 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.dialect.DbDialectListTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper]
21:10:45.028 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to process context configuration [ContextConfigurationAttributes@7395e8a2 declaringClass = 'com.github.mgramin.sqlboot.model.dialect.DbDialectListTest', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', locations = '{}', inheritLocations = true, initializers = '{class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
21:10:45.031 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.dialect.DbDialectListTest]
21:10:45.031 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.dialect.DbDialectListTest]: using defaults.
21:10:45.031 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
21:10:45.032 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@29843f98, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@758812f2, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@6c8554c9, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@2db27181, org.springframework.test.context.support.DirtiesContextTestExecutionListener@25c2f350, org.springframework.test.context.transaction.TransactionalTestExecutionListener@10686a98, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@568d4740, org.springframework.test.context.event.EventPublishingTestExecutionListener@680d0a69, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@5a673c4b, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@988b135, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@35034003, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@35dd5a88, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@56bbad1c]
21:10:45.032 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
21:10:45.033 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@61d461cb, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:45.034 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to load context from [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
21:10:45.034 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
21:10:45.034 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:10:45.038 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loading from YAML: class path resource [application.yml]
21:10:45.044 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Merging document (no matchers set): {conf={dialects=[{name=h2, paginationQueryTemplate={{ query }} offset {{ uri.pageSize()*(uri.pageNumber()-1) }} limit {{ uri.pageSize() }}
}], endpoints=[{name=h2, host=127.0.0.1, confDir=conf/h2/md/database, properties={sql_dialect=h2, jdbc_url=jdbc:h2:mem:;INIT=RUNSCRIPT FROM 'classpath:schema.sql';, jdbc_driver_class_name=org.h2.Driver, jdbc.user=, jdbc.password=, os.query.rest.port=8082, visible=false, description=Embedded db for unit tests only}}]}, spring={jmx={enabled=false}}}
21:10:45.044 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loaded 1 document from YAML resource: class path resource [application.yml]
21:10:45.060 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:10:45.060 [main] DEBUG org.springframework.test.context.support.AnnotationConfigContextLoader - Registering component classes: {class com.github.mgramin.sqlboot.model.dialect.DbDialectList}
21:10:45.070 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@4e72f391
21:10:45.071 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
21:10:45.186 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:45.200 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:45.237 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:45.238 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:10:45.414 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.context.ImportsContextCustomizer$ImportsCleanupPostProcessor'
21:10:45.421 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
21:10:45.423 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
21:10:45.424 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBeanDefinitionValidator'
21:10:45.440 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
21:10:45.441 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
21:10:45.441 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
21:10:45.444 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
21:10:45.445 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
21:10:45.445 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
21:10:45.446 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
21:10:45.446 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
21:10:45.446 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory'
21:10:45.447 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'methodValidationPostProcessor'
21:10:45.448 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
21:10:45.451 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceInitializerPostProcessor'
21:10:45.452 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
21:10:45.452 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
21:10:45.454 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
21:10:45.456 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
21:10:45.457 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@4e72f391'
21:10:45.458 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
21:10:45.458 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
21:10:45.460 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
21:10:45.462 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource'
21:10:45.463 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor'
21:10:45.464 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
21:10:45.465 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
21:10:45.465 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
21:10:45.468 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbDialectList'
21:10:45.468 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class com.github.mgramin.sqlboot.model.dialect.DbDialectList$$EnhancerBySpringCGLIB$$8a3c1c3a] - unable to determine constructor/method parameter names
21:10:45.486 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
21:10:45.487 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
21:10:45.487 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
21:10:45.488 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
21:10:45.489 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
21:10:45.494 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@4e72f391'
21:10:45.494 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
21:10:45.495 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
21:10:45.496 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
21:10:45.497 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
21:10:45.498 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule'
21:10:45.500 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
21:10:45.501 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper'
21:10:45.503 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@4e72f391'
21:10:45.503 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
21:10:45.504 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule'
21:10:45.504 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
21:10:45.513 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
21:10:45.524 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$DefaultCodecsConfiguration'
21:10:45.525 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultCodecCustomizer'
21:10:45.526 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:10:45.528 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.codec-org.springframework.boot.autoconfigure.codec.CodecProperties'
21:10:45.530 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'defaultCodecCustomizer' via factory method to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:10:45.530 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'defaultCodecCustomizer' via factory method to bean named 'spring.codec-org.springframework.boot.autoconfigure.codec.CodecProperties'
21:10:45.531 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
21:10:45.532 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonCodecCustomizer'
21:10:45.533 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper'
21:10:45.534 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
21:10:45.534 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
21:10:45.535 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultValidator'
21:10:45.537 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable.
21:10:45.537 [main] DEBUG org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL
21:10:45.540 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable.
21:10:45.540 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
21:10:45.540 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
21:10:45.540 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1
21:10:45.540 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration.
21:10:45.541 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via user class loader
21:10:45.541 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL
21:10:45.541 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
21:10:45.542 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only.
21:10:45.550 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
21:10:45.550 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver.
21:10:45.550 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
21:10:45.550 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
21:10:45.550 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
21:10:45.553 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
21:10:45.555 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder'
21:10:45.556 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
21:10:45.558 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
21:10:45.560 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastServerConfiguration'
21:10:45.560 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration'
21:10:45.561 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.hazelcast-org.springframework.boot.autoconfigure.hazelcast.HazelcastProperties'
21:10:45.563 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
21:10:45.564 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
21:10:45.564 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:10:45.570 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:10:45.578 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.h2.Driver found in Thread context class loader sun.misc.Launcher$AppClassLoader@18b4aac2
21:10:45.591 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker'
21:10:45.591 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:10:45.592 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@4e72f391'
21:10:45.593 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:45.593 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-2 - configuration:
21:10:45.594 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false
21:10:45.594 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true
21:10:45.594 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery.............none
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=<masked>}
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."org.h2.Driver"
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{}
21:10:45.595 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................600000
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........0
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................1800000
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................10
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none
21:10:45.596 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................10
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - password........................<masked>
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-2"
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default
21:10:45.597 [main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"sa"
21:10:45.598 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000
21:10:45.598 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Starting...
21:10:45.599 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn10: url=jdbc:h2:mem:testdb user=SA
21:10:45.599 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Start completed.
21:10:45.599 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:45.599 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/schema.sql]
21:10:45.610 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema hr if exists cascade
21:10:45.611 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema hr
21:10:45.612 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.users ( id integer, first_name varchar(30), last_name varchar(31), email varchar(50), constraint users_pk primary key (id, first_name) )
21:10:45.613 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.users is 'all system users'
21:10:45.614 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index hr.users_email_idx on hr.users (email, last_name)
21:10:45.614 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.users_view_materialized as select * from hr.users
21:10:45.615 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.jobs ( id integer primary key, name varchar(30), description varchar(100), constraint jobs_pk primary key (id) )
21:10:45.616 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.jobs is 'all jobs'
21:10:45.617 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.persons ( id integer primary key, id_job integer, id_user integer, constraint persons_pk primary key (id) )
21:10:45.617 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.persons is 'all persons'
21:10:45.619 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_jobs_fk foreign key (id_job) references hr.jobs (id)
21:10:45.623 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_users_fk foreign key (id_user) references hr.users (id)
21:10:45.624 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.persons_view_materialized as select * from hr.persons
21:10:45.625 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.countries ( id integer primary key, name varchar(50), population integer, constraint countries_pk primary key (id) )
21:10:45.626 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities ( id integer primary key, name varchar(50), id_country integer, constraint cities_pk primary key (id) )
21:10:45.627 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities_2 ( id integer primary key, name varchar(50), id_country integer, constraint cities_2_pk primary key (id) )
21:10:45.630 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema bookings if exists cascade
21:10:45.631 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema bookings
21:10:45.632 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.aircrafts ( aircraft_code character(3) not null, model text not null, range integer not null, constraint aircrafts_range_check check ((range > 0)) )
21:10:45.633 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.airports ( airport_code character(3) not null, airport_name text not null, city text not null, longitude double precision not null, latitude double precision not null, timezone text not null )
21:10:45.633 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.boarding_passes ( ticket_no character(13) not null, flight_id integer not null, boarding_no integer not null, seat_no character varying(4) not null )
21:10:45.634 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.bookings ( book_ref character(6) not null, book_date timestamp not null, total_amount numeric(10, 2) not null )
21:10:45.634 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.flights ( flight_id integer not null, flight_no character(6) not null, scheduled_departure timestamp not null, scheduled_arrival timestamp not null, departure_airport character(3) not null, arrival_airport character(3) not null, status character varying(20) not null, aircraft_code character(3) not null, actual_departure timestamp, actual_arrival timestamp )
21:10:45.634 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/schema.sql] in 35 ms.
21:10:45.635 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:45.636 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:45.636 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/data.sql]
21:10:45.637 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (1, 'mkyong', 'mkyong@gmail.com')
21:10:45.637 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (2, 'alex', 'alex@yahoo.com')
21:10:45.638 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (4, 'joel', 'joel@gmail.com')
21:10:45.638 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.jobs (id, name, description) values (1, 'driver', 'driver')
21:10:45.638 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/data.sql] in 2 ms.
21:10:45.639 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
21:10:45.639 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
21:10:45.640 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
21:10:45.640 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$TomcatDataSourcePoolMetadataProviderConfiguration'
21:10:45.641 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatPoolDataSourceMetadataProvider'
21:10:45.641 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration'
21:10:45.642 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration'
21:10:45.642 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration'
21:10:45.642 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointAdaptersConfiguration'
21:10:45.643 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration$LegacyReactiveHealthEndpointCompatibilityConfiguration'
21:10:45.643 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthIndicatorRegistry'
21:10:45.644 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthContributorRegistry'
21:10:45.644 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.ReactiveHealthEndpointConfiguration'
21:10:45.645 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicator'
21:10:45.645 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration'
21:10:45.646 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
21:10:45.647 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties'
21:10:45.648 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pingHealthContributor'
21:10:45.648 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration'
21:10:45.649 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbHealthContributor'
21:10:45.649 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration'
21:10:45.649 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' via constructor to bean named 'dataSource'
21:10:45.651 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource'
21:10:45.652 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointGroups'
21:10:45.652 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration'
21:10:45.653 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointProperties'
21:10:45.653 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration'
21:10:45.654 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:45.656 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointProperties' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:45.658 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@4e72f391'
21:10:45.658 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'healthEndpointProperties'
21:10:45.658 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusAggregator'
21:10:45.659 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'healthEndpointProperties'
21:10:45.660 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper'
21:10:45.660 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'healthEndpointProperties'
21:10:45.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator'
21:10:45.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'pingHealthContributor'
21:10:45.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'dbHealthContributor'
21:10:45.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:10:45.662 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'reactiveHealthContributorRegistry'
21:10:45.663 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration'
21:10:45.663 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthAggregator'
21:10:45.664 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthAggregator' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:45.664 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusHttpMapper'
21:10:45.665 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthStatusHttpMapper' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties'
21:10:45.665 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthIndicatorRegistry'
21:10:45.666 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthContributorRegistry'
21:10:45.666 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@4e72f391'
21:10:45.666 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:10:45.667 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthIndicatorRegistry' via factory method to bean named 'healthContributorRegistry'
21:10:45.668 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpoint'
21:10:45.668 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry'
21:10:45.668 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups'
21:10:45.669 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
21:10:45.670 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
21:10:45.672 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
21:10:45.673 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration'
21:10:45.674 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'envInfoContributor'
21:10:45.674 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'envInfoContributor' via factory method to bean named 'environment'
21:10:45.675 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties'
21:10:45.676 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration'
21:10:45.677 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'infoEndpoint'
21:10:45.678 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration'
21:10:45.679 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointOperationParameterMapper'
21:10:45.681 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor'
21:10:45.681 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment'
21:10:45.682 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
21:10:45.683 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'micrometerClock'
21:10:45.685 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesMeterFilter'
21:10:45.686 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:45.688 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:45.691 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration'
21:10:45.692 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusConfig'
21:10:45.693 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties'
21:10:45.695 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusConfig' via factory method to bean named 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties'
21:10:45.696 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusMeterRegistry'
21:10:45.697 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'collectorRegistry'
21:10:45.698 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'prometheusConfig'
21:10:45.698 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'collectorRegistry'
21:10:45.698 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'micrometerClock'
21:10:45.699 [HikariPool-2 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Pool stats (total=1, active=0, idle=1, waiting=0)
21:10:45.701 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn11: url=jdbc:h2:mem:testdb user=SA
21:10:45.701 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
21:10:45.701 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration'
21:10:45.702 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn12: url=jdbc:h2:mem:testdb user=SA
21:10:45.702 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:45.702 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn13: url=jdbc:h2:mem:testdb user=SA
21:10:45.703 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn14: url=jdbc:h2:mem:testdb user=SA
21:10:45.704 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn15: url=jdbc:h2:mem:testdb user=SA
21:10:45.704 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn16: url=jdbc:h2:mem:testdb user=SA
21:10:45.705 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmGcMetrics'
21:10:45.705 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn17: url=jdbc:h2:mem:testdb user=SA
21:10:45.705 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration'
21:10:45.706 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn18: url=jdbc:h2:mem:testdb user=SA
21:10:45.706 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn19: url=jdbc:h2:mem:testdb user=SA
21:10:45.706 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - After adding stats (total=10, active=0, idle=10, waiting=0)
21:10:45.707 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmMemoryMetrics'
21:10:45.708 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmThreadMetrics'
21:10:45.708 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'classLoaderMetrics'
21:10:45.709 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'logbackMetrics'
21:10:45.709 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration'
21:10:45.710 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'uptimeMetrics'
21:10:45.711 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration'
21:10:45.712 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'processorMetrics'
21:10:45.713 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileDescriptorMetrics'
21:10:45.723 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration'
21:10:45.724 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration'
21:10:45.725 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' via constructor to bean named 'prometheusMeterRegistry'
21:10:45.729 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration'
21:10:45.732 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration'
21:10:45.732 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
21:10:45.733 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gsonBuilder'
21:10:45.734 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardGsonBuilderCustomizer'
21:10:45.734 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
21:10:45.738 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardGsonBuilderCustomizer' via factory method to bean named 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
21:10:45.739 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gsonBuilder' via factory method to bean named 'standardGsonBuilderCustomizer'
21:10:45.740 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gson'
21:10:45.741 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gson' via factory method to bean named 'gsonBuilder'
21:10:45.742 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
21:10:45.742 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter'
21:10:45.743 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:10:45.744 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
21:10:45.744 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
21:10:45.745 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
21:10:45.747 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
21:10:45.748 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
21:10:45.748 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
21:10:45.749 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters'
21:10:45.756 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
21:10:45.756 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateBuilder'
21:10:45.757 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRestTemplateCustomizer'
21:10:45.758 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration'
21:10:45.759 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateExchangeTagsProvider'
21:10:45.759 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:10:45.760 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'restTemplateExchangeTagsProvider'
21:10:45.760 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:45.761 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.WebClientMetricsConfiguration'
21:10:45.762 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultWebClientExchangeTagsProvider'
21:10:45.762 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsWebClientCustomizer'
21:10:45.763 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:10:45.763 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'defaultWebClientExchangeTagsProvider'
21:10:45.763 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:10:45.764 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration'
21:10:45.764 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration'
21:10:45.765 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@97e813c'
21:10:45.765 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
21:10:45.766 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
21:10:45.766 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration'
21:10:45.767 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration'
21:10:45.767 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcTemplate'
21:10:45.768 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
21:10:45.769 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource'
21:10:45.769 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
21:10:45.772 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration'
21:10:45.773 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'namedParameterJdbcTemplate'
21:10:45.773 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate'
21:10:45.775 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration'
21:10:45.775 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration'
21:10:45.776 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder'
21:10:45.776 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
21:10:45.778 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
21:10:45.779 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration'
21:10:45.779 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager'
21:10:45.779 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'dataSource'
21:10:45.780 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers'
21:10:45.780 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration'
21:10:45.781 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties'
21:10:45.784 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration'
21:10:45.784 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration'
21:10:45.785 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration'
21:10:45.785 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration'
21:10:45.786 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionTemplate'
21:10:45.787 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager'
21:10:45.788 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorConfiguration$ReactorNetty'
21:10:45.789 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientResourceFactory'
21:10:45.789 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientHttpConnector'
21:10:45.790 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactorClientHttpConnector' via factory method to bean named 'reactorClientResourceFactory'
21:10:45.790 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration'
21:10:45.791 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'clientConnectorCustomizer'
21:10:45.791 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'clientConnectorCustomizer' via factory method to bean named 'reactorClientHttpConnector'
21:10:45.792 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration$WebClientCodecsConfiguration'
21:10:45.792 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'exchangeStrategiesCustomizer'
21:10:45.793 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'defaultCodecCustomizer'
21:10:45.793 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'jacksonCodecCustomizer'
21:10:45.794 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration'
21:10:45.796 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration'
21:10:45.797 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties'
21:10:45.798 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
21:10:45.806 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext [1316156305] in cache under key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.806 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 33, missCount = 2]
21:10:45.813 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.813 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 34, missCount = 2]
21:10:45.814 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@61d461cb, testMethod = paginationQueryTemplate@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:45.815 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.815 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 35, missCount = 2]
21:10:45.815 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.815 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 36, missCount = 2]
21:10:45.817 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.817 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 37, missCount = 2]
21:10:45.818 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.818 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 38, missCount = 2]
21:10:45.818 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.818 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 39, missCount = 2]
21:10:45.819 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.819 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 40, missCount = 2]
21:10:45.819 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.819 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 41, missCount = 2]
21:10:45.820 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.820 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 42, missCount = 2]
21:10:45.821 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.821 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 43, missCount = 2]
21:10:45.822 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@61d461cb, testMethod = paginationQueryTemplate@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:45.823 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@d354e93, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:45.823 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.823 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 44, missCount = 2]
21:10:45.823 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.823 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 45, missCount = 2]
21:10:45.824 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@d354e93, testMethod = dialect@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:45.825 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.825 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 46, missCount = 2]
21:10:45.825 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.825 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 47, missCount = 2]
21:10:45.826 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.826 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 48, missCount = 2]
21:10:45.835 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.835 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 49, missCount = 2]
21:10:45.835 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.835 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 50, missCount = 2]
21:10:45.836 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.836 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 51, missCount = 2]
21:10:45.836 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.836 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 52, missCount = 2]
21:10:45.837 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.837 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 53, missCount = 2]
21:10:45.838 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.838 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 54, missCount = 2]
21:10:45.838 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@d354e93, testMethod = dialect@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:45.839 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1316156305] from cache with key [[MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:45.839 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 55, missCount = 2]
21:10:45.839 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@1af6bfe7 testClass = DbDialectListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@35dae7e2 testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@6a8cf2cb key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.783 s - in com.github.mgramin.sqlboot.model.dialect.DbDialectListTest
[INFO] Running com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest
21:10:45.841 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:10:45.841 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)]
21:10:45.841 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper]
21:10:45.842 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@bc55216 declaringClass = 'com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest', classes = '{}', locations = '{/test_config.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
21:10:45.844 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest]
21:10:45.844 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest]: using defaults.
21:10:45.844 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
21:10:45.845 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@26080b64, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@747fb320, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@33d574a5, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@765758ee, org.springframework.test.context.support.DirtiesContextTestExecutionListener@10622e6b, org.springframework.test.context.transaction.TransactionalTestExecutionListener@190d79f4, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@165462c, org.springframework.test.context.event.EventPublishingTestExecutionListener@4d39eec6, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@4c29807c, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@3e1992d4, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@15e6f71d, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@172b64b9, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@17013c40]
21:10:45.845 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
21:10:45.846 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@b42741e, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:45.846 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
21:10:45.846 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
21:10:45.846 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:10:46.065 [main] DEBUG org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loaded 6 bean definitions from class path resource [test_config.xml]
21:10:46.066 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@153faa0a
21:10:46.067 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
21:10:46.069 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
21:10:46.070 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
21:10:46.070 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
21:10:46.071 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
21:10:46.071 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
21:10:46.071 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
21:10:46.072 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
21:10:46.101 [main] INFO org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory - Starting embedded database: url='jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false', username='sa'
21:10:46.101 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:46.101 [main] DEBUG org.springframework.jdbc.datasource.SimpleDriverDataSource - Creating new JDBC Driver Connection to [jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false]
21:10:46.104 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from class path resource [db/sql/create-test-db.sql]
21:10:46.104 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema main_schema
21:10:46.105 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table main_schema.city ( id integer primary key, country varchar(50), city varchar(50) )
21:10:46.106 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table main_schema.users ( id integer primary key, name varchar(30), email varchar(50), registration_date timestamp, id_city integer )
21:10:46.107 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index main_schema.users_name_idx on main_schema.users (name)
21:10:46.108 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index main_schema.users_email_idx on main_schema.users (email)
21:10:46.110 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table main_schema.users add constraint main_schema.users_city_fk foreign key (id_city) references main_schema.city (id)
21:10:46.110 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view main_schema.city_vw as select * from main_schema.city
21:10:46.111 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view main_schema.users_vw as select * from main_schema.users
21:10:46.111 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from class path resource [db/sql/create-test-db.sql] in 7 ms.
21:10:46.111 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from class path resource [db/sql/init-test-data.sql]
21:10:46.112 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into main_schema.users (id, name, email) values (1, 'mkyong', 'mkyong@gmail.com')
21:10:46.112 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into main_schema.users (id, name, email) values (2, 'alex', 'alex@yahoo.com')
21:10:46.113 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into main_schema.users (id, name, email) values (4, 'joel', 'joel@gmail.com')
21:10:46.113 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from class path resource [db/sql/init-test-data.sql] in 2 ms.
21:10:46.115 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext [356493834] in cache under key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:46.115 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 55, missCount = 3]
21:10:46.125 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:46.125 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 56, missCount = 3]
21:10:46.126 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@b42741e, testMethod = readAllColumns@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:46.127 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:46.127 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 57, missCount = 3]
21:10:46.127 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:46.127 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 58, missCount = 3]
21:10:46.128 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:46.128 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 59, missCount = 3]
21:10:46.572 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery -
/* { "name": "column" } */
select table_schema
     , table_name
     , column_name
  from information_schema.columns
21:10:46.655 [parallel-1] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery - Thread[parallel-1,5,main]
21:10:46.657 [parallel-1] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [/* { "name": "column" } */
select table_schema
     , table_name
     , column_name
  from information_schema.columns]
21:10:46.658 [parallel-1] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:47.565 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.565 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 60, missCount = 3]
21:10:47.566 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.566 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 61, missCount = 3]
21:10:47.566 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.566 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 62, missCount = 3]
21:10:47.567 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.567 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 63, missCount = 3]
21:10:47.567 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.567 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 64, missCount = 3]
21:10:47.568 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.568 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 65, missCount = 3]
21:10:47.568 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@b42741e, testMethod = readAllColumns@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.569 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@41f64254, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:47.569 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.569 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 66, missCount = 3]
21:10:47.570 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.570 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 67, missCount = 3]
21:10:47.570 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@41f64254, testMethod = aliases@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.571 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.571 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 68, missCount = 3]
21:10:47.571 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.571 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 69, missCount = 3]
21:10:47.572 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.572 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 70, missCount = 3]
21:10:47.574 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.574 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 71, missCount = 3]
21:10:47.575 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.575 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 72, missCount = 3]
21:10:47.575 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.575 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 73, missCount = 3]
21:10:47.575 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.577 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 74, missCount = 3]
21:10:47.578 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.578 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 75, missCount = 3]
21:10:47.578 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.578 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 76, missCount = 3]
21:10:47.578 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@41f64254, testMethod = aliases@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.579 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@19cc1ed7, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:47.579 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.580 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 77, missCount = 3]
21:10:47.582 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.582 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 78, missCount = 3]
21:10:47.583 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@19cc1ed7, testMethod = toJson@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.584 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.584 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 79, missCount = 3]
21:10:47.584 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.584 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 80, missCount = 3]
21:10:47.585 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.585 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 81, missCount = 3]
21:10:47.785 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.785 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 82, missCount = 3]
21:10:47.785 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.785 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 83, missCount = 3]
21:10:47.785 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.785 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 84, missCount = 3]
21:10:47.786 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.786 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 85, missCount = 3]
21:10:47.787 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.787 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 86, missCount = 3]
21:10:47.787 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.787 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 87, missCount = 3]
21:10:47.787 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@19cc1ed7, testMethod = toJson@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.788 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@231a2cec, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:47.788 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.788 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 88, missCount = 3]
21:10:47.789 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.789 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 89, missCount = 3]
21:10:47.790 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@231a2cec, testMethod = metaData@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.790 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.790 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 90, missCount = 3]
21:10:47.791 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.791 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 91, missCount = 3]
21:10:47.792 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.792 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 92, missCount = 3]
21:10:47.932 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.932 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 93, missCount = 3]
21:10:47.935 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.935 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 94, missCount = 3]
21:10:47.935 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.935 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 95, missCount = 3]
21:10:47.935 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.935 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 96, missCount = 3]
21:10:47.936 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.936 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 97, missCount = 3]
21:10:47.937 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.937 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 98, missCount = 3]
21:10:47.937 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@231a2cec, testMethod = metaData@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.938 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@23b91b8e, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:47.938 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.938 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 99, missCount = 3]
21:10:47.939 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.939 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 100, missCount = 3]
21:10:47.940 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@23b91b8e, testMethod = name@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.940 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.940 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 101, missCount = 3]
21:10:47.940 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.940 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 102, missCount = 3]
21:10:47.941 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.941 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 103, missCount = 3]
21:10:47.943 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.943 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 104, missCount = 3]
21:10:47.943 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.943 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 105, missCount = 3]
21:10:47.943 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.943 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 106, missCount = 3]
21:10:47.944 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.944 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 107, missCount = 3]
21:10:47.945 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.945 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 108, missCount = 3]
21:10:47.945 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.945 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 109, missCount = 3]
21:10:47.945 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@23b91b8e, testMethod = name@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.946 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@5c000a09, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:47.947 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.947 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 110, missCount = 3]
21:10:47.947 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.947 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 111, missCount = 3]
21:10:47.948 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@5c000a09, testMethod = path@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.949 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.949 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 112, missCount = 3]
21:10:47.949 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.949 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 113, missCount = 3]
21:10:47.950 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.950 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 114, missCount = 3]
21:10:47.954 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.954 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 115, missCount = 3]
21:10:47.954 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.954 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 116, missCount = 3]
21:10:47.954 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.954 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 117, missCount = 3]
21:10:47.955 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.955 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 118, missCount = 3]
21:10:47.956 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.956 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 119, missCount = 3]
21:10:47.956 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.956 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 120, missCount = 3]
21:10:47.956 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@5c000a09, testMethod = path@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.957 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@421c78e0, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:10:47.957 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.957 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 121, missCount = 3]
21:10:47.958 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.958 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 122, missCount = 3]
21:10:47.959 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@421c78e0, testMethod = readAllTables@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:47.959 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.959 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 123, missCount = 3]
21:10:47.960 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.960 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 124, missCount = 3]
21:10:47.961 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:47.961 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 125, missCount = 3]
21:10:47.963 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery -
/* { "name": "table" } */
select table_schema
     , table_name
  from information_schema.tables
21:10:47.968 [parallel-2] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery - Thread[parallel-2,5,main]
21:10:47.968 [parallel-2] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [/* { "name": "table" } */
select table_schema
     , table_name
  from information_schema.tables]
21:10:47.968 [parallel-2] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:10:48.153 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:48.153 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 126, missCount = 3]
21:10:48.153 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:48.153 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 127, missCount = 3]
21:10:48.153 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:48.153 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 128, missCount = 3]
21:10:48.154 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:48.154 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 129, missCount = 3]
21:10:48.154 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:48.154 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 130, missCount = 3]
21:10:48.155 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:48.155 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 131, missCount = 3]
21:10:48.155 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@421c78e0, testMethod = readAllTables@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null].
21:10:48.155 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [356493834] from cache with key [[MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:10:48.156 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@3571741a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 132, missCount = 3]
21:10:48.156 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@65fc9346 testClass = SqlResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4780cefb testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
[INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.308 s - in com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest
[INFO] Running com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest
21:10:48.157 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:10:48.157 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)]
21:10:48.159 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest] from class [org.springframework.boot.test.context.SpringBootTestContextBootstrapper]
21:10:48.165 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest], using SpringBootContextLoader
21:10:48.168 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest]: class path resource [com/github/mgramin/sqlboot/model/resourcetype/ResourceTypeJsonSerializerTest-context.xml] does not exist
21:10:48.168 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest]: class path resource [com/github/mgramin/sqlboot/model/resourcetype/ResourceTypeJsonSerializerTestContext.groovy] does not exist
21:10:48.168 [main] INFO org.springframework.test.context.support.AbstractContextLoader - Could not detect default resource locations for test class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest]: no resource found for suffixes {-context.xml, Context.groovy}.
21:10:48.172 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest]
21:10:48.188 [main] DEBUG org.springframework.boot.test.context.SpringBootTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest]: using defaults.
21:10:48.188 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
21:10:48.192 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@cc38a2f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@9390526, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@7e7001e0, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@797b2044, org.springframework.test.context.support.DirtiesContextTestExecutionListener@69795fb6, org.springframework.test.context.transaction.TransactionalTestExecutionListener@28a8778a, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@56291c7e, org.springframework.test.context.event.EventPublishingTestExecutionListener@76706fff, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@55570a68, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@3ea8236f, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@207c0228, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@55869e4f, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@38efcadd]
21:10:48.193 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@472335f4 testClass = ResourceTypeJsonSerializerTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@78e027a testClass = ResourceTypeJsonSerializerTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.Application, class com.github.mgramin.sqlboot.Application}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@200d39c7, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@7696c3dc, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> false]], class annotated with @DirtiesContext [false] with mode [null].
21:10:48.193 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@472335f4 testClass = ResourceTypeJsonSerializerTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest@661b9022, testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@78e027a testClass = ResourceTypeJsonSerializerTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.Application, class com.github.mgramin.sqlboot.Application}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@43ecfeb5, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@68ddd415, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@200d39c7, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@7696c3dc, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3fbe503c], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> false]]].
21:10:48.232 [main] DEBUG org.springframework.test.context.support.TestPropertySourceUtils - Adding inlined properties to environment: {spring.jmx.enabled=false, org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}
     _____  ____  _          ____   ____   ____ _______
    / ____|/ __ \| |        |  _ \ / __ \ / __ \__   __|
   | (___ | |  | | |  ______| |_) | |  | | |  | | | |
    \___ \| |  | | | |______|  _ <| |  | | |  | | | |
    ____) | |__| | |____    | |_) | |__| | |__| | | |
   |_____/ \___\_\______|   |____/ \____/ \____/  |_|


2019-12-03 21:10:48.550  INFO 169 --- [           main] g.m.s.m.r.ResourceTypeJsonSerializerTest : Starting ResourceTypeJsonSerializerTest on docker with PID 169 (started by r in /home/r/repo)
2019-12-03 21:10:48.553  INFO 169 --- [           main] g.m.s.m.r.ResourceTypeJsonSerializerTest : No active profile set, falling back to default profiles: default
2019-12-03 21:10:49.630  INFO 169 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-12-03 21:10:50.124  INFO 169 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 0 (http)
2019-12-03 21:10:50.150  INFO 169 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2019-12-03 21:10:50.151  INFO 169 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.27]
2019-12-03 21:10:50.326  INFO 169 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2019-12-03 21:10:50.327  INFO 169 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1765 ms
2019-12-03 21:10:50.492  INFO 169 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Starting...
2019-12-03 21:10:50.499  INFO 169 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Start completed.
2019-12-03 21:10:51.429  INFO 169 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2019-12-03 21:10:51.980  INFO 169 --- [           main] o.s.b.a.e.web.EndpointLinksResolver      : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-12-03 21:10:52.098  INFO 169 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 45194 (http) with context path ''
2019-12-03 21:10:52.101  INFO 169 --- [           main] g.m.s.m.r.ResourceTypeJsonSerializerTest : Started ResourceTypeJsonSerializerTest in 3.864 seconds (JVM running for 17.327)
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.006 s - in com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest
[INFO] Running com.github.mgramin.sqlboot.model.resourcetype.wrappers.ResourceTypeWrapperTest
2019-12-03 21:10:52.456  INFO 169 --- [           main] c.h.config.AbstractConfigLocator         : Loading 'hazelcast-default.xml' from the classpath.
2019-12-03 21:10:52.943  INFO 169 --- [           main] com.hazelcast.instance.AddressPicker     : [LOCAL] [dev] [3.12.4] Prefer IPv4 stack is true, prefer IPv6 addresses is false
2019-12-03 21:10:52.956  INFO 169 --- [           main] com.hazelcast.instance.AddressPicker     : [LOCAL] [dev] [3.12.4] Picked [172.17.0.6]:5701, using socket ServerSocket[addr=/0.0.0.0,localport=5701], bind any local is true
2019-12-03 21:10:52.998  INFO 169 --- [           main] com.hazelcast.system                     : [172.17.0.6]:5701 [dev] [3.12.4] Hazelcast 3.12.4 (20191030 - eab1290) starting at [172.17.0.6]:5701
2019-12-03 21:10:52.999  INFO 169 --- [           main] com.hazelcast.system                     : [172.17.0.6]:5701 [dev] [3.12.4] Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
2019-12-03 21:10:53.617  INFO 169 --- [           main] c.h.s.i.o.impl.BackpressureRegulator     : [172.17.0.6]:5701 [dev] [3.12.4] Backpressure is disabled
2019-12-03 21:10:55.142  INFO 169 --- [           main] com.hazelcast.instance.Node              : [172.17.0.6]:5701 [dev] [3.12.4] Creating MulticastJoiner
2019-12-03 21:10:55.587  INFO 169 --- [           main] c.h.s.i.o.impl.OperationExecutorImpl     : [172.17.0.6]:5701 [dev] [3.12.4] Starting 12 partition threads and 7 generic threads (1 dedicated for priority tasks)
2019-12-03 21:10:55.591  INFO 169 --- [           main] c.h.internal.diagnostics.Diagnostics     : [172.17.0.6]:5701 [dev] [3.12.4] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
2019-12-03 21:10:55.606  INFO 169 --- [           main] com.hazelcast.core.LifecycleService      : [172.17.0.6]:5701 [dev] [3.12.4] [172.17.0.6]:5701 is STARTING
2019-12-03 21:10:58.100  INFO 169 --- [           main] c.h.internal.cluster.ClusterService      : [172.17.0.6]:5701 [dev] [3.12.4]

Members {size:1, ver:1} [
        Member [172.17.0.6]:5701 - 301b3a15-2eb9-4399-ad30-54856bc0b1b5 this
]

2019-12-03 21:10:58.169  INFO 169 --- [           main] com.hazelcast.core.LifecycleService      : [172.17.0.6]:5701 [dev] [3.12.4] [172.17.0.6]:5701 is STARTED
2019-12-03 21:10:58.187  INFO 169 --- [           main] c.h.i.p.impl.PartitionStateManager       : [172.17.0.6]:5701 [dev] [3.12.4] Initializing cluster partition table arrangement...
2019-12-03 21:10:58.220  INFO 169 --- [           main] com.hazelcast.cache.impl.CacheService    : [172.17.0.6]:5701 [dev] [3.12.4] Added cache config: CacheConfig{name='simpleCache', managerPrefix='/hz/', inMemoryFormat=BINARY, backupCount=1, hotRestart=HotRestartConfig{enabled=false, fsync=false}, wanReplicationRef=null}
{schema=hr, table=persons, file=table.hr.persons.sql, size=100}
{schema=hr, table=persons, file=table.hr.persons.sql, size=100}
{schema=hr, table=persons, file=table.hr.persons.sql, size=100}
[INFO] Tests run: 65, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.188 s - in com.github.mgramin.sqlboot.model.resourcetype.wrappers.ResourceTypeWrapperTest
[INFO] Running com.github.mgramin.sqlboot.model.resourcetype.MetadataTest
Metadata(name=name, type=Integer, comment={ "key_1": "value_1" })
[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in com.github.mgramin.sqlboot.model.resourcetype.MetadataTest
[INFO] Running com.github.mgramin.sqlboot.model.resource.impl.DbResourceImplTest
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.model.resource.impl.DbResourceImplTest
[INFO] Running com.github.mgramin.sqlboot.model.resource.wrappers.DbResourceBodyWrapperTest
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.model.resource.wrappers.DbResourceBodyWrapperTest
[INFO] Running com.github.mgramin.sqlboot.model.uri.DbUriTest
{"client_host":"31.181.37.137 port=5844"}
[INFO] Tests run: 24, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034 s - in com.github.mgramin.sqlboot.model.uri.DbUriTest
[INFO] Running com.github.mgramin.sqlboot.model.uri.wrappers.SqlPlaceholdersWrapperTest
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in com.github.mgramin.sqlboot.model.uri.wrappers.SqlPlaceholdersWrapperTest
[INFO] Running com.github.mgramin.sqlboot.model.uri.wrappers.JsonWrapperTest
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.model.uri.wrappers.JsonWrapperTest
[INFO] Running com.github.mgramin.sqlboot.tools.files.file.impl.MarkdownFileTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.051 s - in com.github.mgramin.sqlboot.tools.files.file.impl.MarkdownFileTest
[INFO] Running com.github.mgramin.sqlboot.tools.files.file.impl.SimpleFileTest
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in com.github.mgramin.sqlboot.tools.files.file.impl.SimpleFileTest
[INFO] Running com.github.mgramin.sqlboot.tools.files.file.wrappers.ZippedFileTest
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 s - in com.github.mgramin.sqlboot.tools.files.file.wrappers.ZippedFileTest
[INFO] Running com.github.mgramin.sqlboot.template.generator.impl.JinjaTemplateGeneratorTest
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.046 s - in com.github.mgramin.sqlboot.template.generator.impl.JinjaTemplateGeneratorTest
[INFO] Running com.github.mgramin.sqlboot.template.generator.impl.FakeTemplateGeneratorTest
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.template.generator.impl.FakeTemplateGeneratorTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.impl.SimpleSelectQueryTest
line 1:0 missing MULTIPLE_LINE_COMMENT at 'select'
line 1:0 missing MULTIPLE_LINE_COMMENT at 'select'
[INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 s - in com.github.mgramin.sqlboot.sql.select.impl.SimpleSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.PaginatedSelectQueryTest
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 0 limit 1
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 0 limit 2
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 0 limit 3
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 1 limit 1
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 2 limit 2
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 2 limit 1
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 3 limit 1
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users) offset 0 limit 100
[INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 s - in com.github.mgramin.sqlboot.sql.select.wrappers.PaginatedSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.FilteredSelectQueryTest
2019-12-03 21:10:58.629  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2019-12-03 21:10:58.630  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@25e2836d, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@35345a37, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@6d1248b3, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@305e4242, org.springframework.test.context.support.DirtiesContextTestExecutionListener@11646cf, org.springframework.test.context.transaction.TransactionalTestExecutionListener@16e44138, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@69ccc487, org.springframework.test.context.event.EventPublishingTestExecutionListener@2bc2d7ae, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1851cc27, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@2c88b394, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@236fb27e, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1e2d7e1a, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@80ba90c]
2019-12-03 21:10:58.658  INFO 169 --- [           main] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select *
  from (select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)) q
 where lower(n) like lower('test') and lower(mail) like lower('test1')
select *
  from (select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)) q
 where lower(n) like lower('test') and lower(mail) like lower('test1')
[Column(name=n, datatype=VARCHAR, comment=First name, properties={}), Column(name=mail, datatype=VARCHAR, comment=Personal email, properties={}), Column(name=registration_date, datatype=timestamptz, comment=Registration date, properties={})]
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 s - in com.github.mgramin.sqlboot.sql.select.wrappers.FilteredSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.CustomFilteredSelectQueryTest
select *
  from (select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)) q
 where registration_date between '2019-09-05 00:00'::timestamptz and '2019-09-13 23:59'::timestamptz
select *
  from (select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)) q
 where n = 'John Doe' and mail = 'doe@mail.com'
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)
[INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 s - in com.github.mgramin.sqlboot.sql.select.wrappers.CustomFilteredSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest
2019-12-03 21:10:58.684  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2019-12-03 21:10:58.684  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@71e7a4b4, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4b80d1c9, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@f02a76, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6e1d29d5, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2213e2a6, org.springframework.test.context.transaction.TransactionalTestExecutionListener@6f5061b4, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6ef245b2, org.springframework.test.context.event.EventPublishingTestExecutionListener@69268a38, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@541d5368, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@382cc59e, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@448fc8fc, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@19a5fd1f, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@279d6b50]
2019-12-03 21:10:58.696  INFO 169 --- [           main] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select *
  from (select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)) q
 order by n asc, mail desc
select *
  from (select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)) q
 order by n desc, mail asc
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 s - in com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.GrafanaSelectQueryTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.sql.select.wrappers.GrafanaSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQueryTest
2019-12-03 21:10:58.706  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
2019-12-03 21:10:58.707  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@2bb9a24f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@8a477d3, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@43b19cb4, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@4dd2b38a, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2b1fcba5, org.springframework.test.context.transaction.TransactionalTestExecutionListener@ae3bfa, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@4f354367, org.springframework.test.context.event.EventPublishingTestExecutionListener@17a3e7e8, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@4234545a, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@33b4c60d, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@567f8567, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@5e6bb4e7, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@3e1dbdf4]
2019-12-03 21:10:58.715  INFO 169 --- [           main] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select n                 /* First name */
     , mail              /* Personal email */
     , registration_date /* Registration date */
  from (select name  as n
             , email as mail
             , registration_date
          from main_schema.users)
2019-12-03 21:10:58.716  INFO 169 --- [     parallel-3] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-3,5,main]
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 s - in com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.TemplatedSelectQueryTest
[INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 s - in com.github.mgramin.sqlboot.sql.select.wrappers.TemplatedSelectQueryTest
2019-12-03 21:10:58.756  INFO 169 --- [.ShutdownThread] com.hazelcast.instance.Node              : [172.17.0.6]:5701 [dev] [3.12.4] Running shutdown hook... Current state: ACTIVE
2019-12-03 21:10:58.757  INFO 169 --- [.ShutdownThread] com.hazelcast.core.LifecycleService      : [172.17.0.6]:5701 [dev] [3.12.4] [172.17.0.6]:5701 is SHUTTING_DOWN
2019-12-03 21:10:58.768  INFO 169 --- [extShutdownHook] o.s.j.d.e.EmbeddedDatabaseFactory        : Shutting down embedded database: url='jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false'
2019-12-03 21:10:58.889  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-2 - Shutdown initiated...
2019-12-03 21:10:58.889  INFO 169 --- [extShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor  : Shutting down ExecutorService 'applicationTaskExecutor'
2019-12-03 21:10:58.889  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2019-12-03 21:10:58.900  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Shutdown initiated...
2019-12-03 21:10:58.913  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2019-12-03 21:10:58.913  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Shutdown completed.
2019-12-03 21:10:58.916  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-2 - Shutdown completed.
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 169, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- jacoco-maven-plugin:0.8.2:report (report) @ sql-boot ---
[INFO] Loading execution data file /home/r/repo/target/jacoco.exec
[INFO] Analyzed bundle 'sql-boot' with 103 classes
[INFO]
[INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.pom (5 KB at 228.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/22/maven-shared-components-22.pom (5 KB at 237.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.pom (5 KB at 184.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom (4 KB at 187.0 KB/sec)
Downloading: http://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: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom (2 KB at 85.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom (13 KB at 549.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom (2 KB at 95.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom (2 KB at 80.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom (21 KB at 801.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.pom (5 KB at 154.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom (5 KB at 237.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.pom (5 KB at 205.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (22 KB at 998.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5 KB at 225.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.pom (5 KB at 201.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom
Downloaded: http://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 KB at 662.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (67 KB at 1701.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom (18 KB at 741.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (76 KB at 1847.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom (15 KB at 676.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom
Downloaded: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom (2 KB at 93.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (3 KB at 123.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.pom (5 KB at 235.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/3.0.0/maven-shared-io-3.0.0.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar
Downloaded:6http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.4.0/maven-archiver-3.4.0.jar (24 KB at 743.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.0.0/file-management-3.0.0.jar (35 KB at 1014.5 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar (53 KB at 1537.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar
Downloaded: http://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 941.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.1/plexus-io-3.1.1.jar (74 KB at 646.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar
Downloaded: http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar (57 KB at 449.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar (578 KB at 4098.4 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar (279 KB at 1879.8 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.1.0/plexus-archiver-4.1.0.jar (188 KB at 1217.0 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar (107 KB at 582.5 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar (257 KB at 1014.3 KB/sec)
[INFO] Building jar: /home/r/repo/target/sql-boot-0.5.1.jar
[INFO]
[INFO] --- spring-boot-maven-plugin:2.2.1.RELEASE:repackage (repackage) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.2.1.RELEASE/spring-boot-loader-tools-2.2.1.RELEASE.pom
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.2.1.RELEASE/spring-boot-loader-tools-2.2.1.RELEASE.pom (3 KB at 129.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom (18 KB at 741.7 KB/sec)
Downloading: http://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: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom (6 KB at 258.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.pom (5 KB at 236.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.pom (5 KB at 222.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom (10 KB at 433.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom (12 KB at 491.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom (5 KB at 237.6 KB/sec)
Downloading: http://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: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom (5 KB at 224.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.pom
Downloaded: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.pom (14 KB at 580.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom (3 KB at 143.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom (4 KB at 178.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom (4 KB at 152.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom (4 KB at 171.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom (5 KB at 224.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom (8 KB at 366.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom (11 KB at 499.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom (3 KB at 143.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom (4 KB at 162.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom (4 KB at 153.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom (4 KB at 189.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom (4 KB at 188.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom (7 KB at 349.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom
Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom (10 KB at 459.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.2.1.RELEASE/spring-boot-loader-tools-2.2.1.RELEASE.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.jar
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.jar (188 KB at 3341.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.jar
Downloaded:8http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.jar (60 KB at 1049.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (84 KB at 1262.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar
Downloaded:7http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.jar (74 KB at 836.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.jar
Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.2.1.RELEASE/spring-boot-loader-tools-2.2.1.RELEASE.jar (151 KB at 1615.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar (112 KB at 868.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar (125 KB at 838.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar
Downloaded: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.jar (337 KB at 2038.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar (112 KB at 653.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar (78 KB at 428.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar (33 KB at 174.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar (50 KB at 260.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar (36 KB at 159.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar (182 KB at 767.3 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar (79 KB at 320.8 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar (601 KB at 2337.2 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar (298 KB at 1048.5 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar (2255 KB at 3578.4 KB/sec)
[INFO] Layout: ZIP
[INFO] Replacing main artifact with repackaged archive
[INFO]
[INFO] --- maven-assembly-plugin:2.2-beta-5:single (make-assembly) @ sql-boot ---
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.pom (3 KB at 135.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom (7 KB at 309.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom (3 KB at 133.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0/maven-project-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0/maven-project-2.0.pom (2 KB at 84.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom (2 KB at 70.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0/maven-model-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0/maven-model-2.0.pom (3 KB at 123.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom (2 KB at 69.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom (2 KB at 63.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom (723 B at 35.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0/maven-core-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0/maven-core-2.0.pom (6 KB at 273.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom (2 KB at 67.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom (2 KB at 71.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom (2 KB at 57.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom (504 B at 25.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom
Downloaded: http://repo.maven.apache.org/maven2/doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom (2 KB at 56.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom (812 B at 39.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom (2 KB at 66.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom (2 KB at 75.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom (400 B at 21.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom (2 KB at 53.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom (2 KB at 97.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom (767 B at 41.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom (6 KB at 305.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.pom (3 KB at 149.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.pom (2 KB at 81.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.pom (2 KB at 61.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.pom (3 KB at 136.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/4/maven-shared-components-4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/4/maven-shared-components-4.pom (3 KB at 107.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/4/maven-parent-4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/4/maven-parent-4.pom (10 KB at 464.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.0/maven-shared-io-1.0.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.0/maven-shared-io-1.0.pom (3 KB at 147.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom (4 KB at 196.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom (3 KB at 141.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.pom (3 KB at 135.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-22/plexus-container-default-1.0-alpha-22.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-22/plexus-container-default-1.0-alpha-22.pom (3 KB at 132.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-22/plexus-containers-1.0-alpha-22.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-22/plexus-containers-1.0-alpha-22.pom (2 KB at 96.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.pom (643 B at 33.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.pom (4 KB at 167.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-11/plexus-archiver-1.0-alpha-11.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-11/plexus-archiver-1.0-alpha-11.pom (2 KB at 92.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom (3 KB at 131.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom (2 KB at 83.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom (2 KB at 92.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom (948 B at 48.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom (3 KB at 115.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-3/plexus-io-1.0-alpha-3.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-3/plexus-io-1.0-alpha-3.pom (2 KB at 72.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom (3 KB at 113.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom (2 KB at 96.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom (3 KB at 118.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.pom (4 KB at 171.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.pom (4 KB at 157.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.0-alpha-1/maven-common-artifact-filters-1.0-alpha-1.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.0-alpha-1/maven-common-artifact-filters-1.0-alpha-1.pom (2 KB at 92.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/6/maven-shared-components-6.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/6/maven-shared-components-6.pom (4 KB at 151.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.jar
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.jar
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.jar (30 KB at 1011.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar (32 KB at 933.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.jar (50 KB at 1312.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.jar (31 KB at 780.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.jar (173 KB at 3756.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.jar
Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar (49 KB at 941.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.jar (20 KB at 331.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.4/maven-project-2.0.4.jar
Downloaded:4http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.jar (21 KB at 348.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.4/maven-profile-2.0.4.jar
Downloaded:4http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar (33 KB at 498.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.jar
Downloaded:9http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.jar (48 KB at 694.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.jar
Downloaded:/http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.jar (9 KB at 116.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.4/maven-artifact-2.0.4.jar
Downloaded:3http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.jar (20 KB at 199.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.4/maven-model-2.0.4.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.4/maven-profile-2.0.4.jar (30 KB at 307.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.4/maven-artifact-2.0.4.jar (79 KB at 699.8 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.4/maven-project-2.0.4.jar (107 KB at 941.9 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.jar (217 KB at 1850.1 KB/sec)
Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.jar (23 KB at 183.8 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.4/maven-model-2.0.4.jar (79 KB at 571.6 KB/sec)
[INFO] Reading assembly descriptor: src/main/assembly/assembly.xml
[INFO] Building zip: /home/r/repo/target/sql-boot.zip
[INFO]
[INFO] --- maven-failsafe-plugin:2.22.2:integration-test (default) @ sql-boot ---
[INFO]
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase
21:11:08.407 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:11:08.466 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)]
21:11:08.557 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase] from class [org.springframework.boot.test.context.SpringBootTestContextBootstrapper]
21:11:08.608 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase], using SpringBootContextLoader
21:11:08.618 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase]: class path resource [com/github/mgramin/sqlboot/rest/controllers/DbResourceRESTWrapperITCase-context.xml] does not exist
21:11:08.619 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase]: class path resource [com/github/mgramin/sqlboot/rest/controllers/DbResourceRESTWrapperITCaseContext.groovy] does not exist
21:11:08.619 [main] INFO org.springframework.test.context.support.AbstractContextLoader - Could not detect default resource locations for test class [com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase]: no resource found for suffixes {-context.xml, Context.groovy}.
21:11:08.697 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase]
21:11:09.010 [main] DEBUG org.springframework.boot.test.context.SpringBootTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase]: using defaults.
21:11:09.012 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener]
21:11:09.063 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@22da200e, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4f26425b, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@f03ee8f, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@40dd552c, org.springframework.test.context.support.DirtiesContextTestExecutionListener@33f4c769, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4ebd6fd6, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5e5a8718, org.springframework.test.context.event.EventPublishingTestExecutionListener@7404ddca, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@615e83ac, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@4438938e, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@4e50ae56, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1c68d0db, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@9be7319]
21:11:09.072 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@4a660b34 testClass = DbResourceRESTWrapperITCase, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@362a561e testClass = DbResourceRESTWrapperITCase, locations = '{}', classes = '{class com.github.mgramin.sqlboot.Application, class com.github.mgramin.sqlboot.Application}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@2b38b1f, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@27329d2a, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@2e26173, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@49cb1baf, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@518ddd3b], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> false]], class annotated with @DirtiesContext [false] with mode [null].
21:11:09.214 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4a660b34 testClass = DbResourceRESTWrapperITCase, testInstance = com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase@534762ed, testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@362a561e testClass = DbResourceRESTWrapperITCase, locations = '{}', classes = '{class com.github.mgramin.sqlboot.Application, class com.github.mgramin.sqlboot.Application}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@2b38b1f, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@27329d2a, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@2e26173, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@49cb1baf, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@518ddd3b], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> false]]].
21:11:09.290 [main] DEBUG org.springframework.test.context.support.TestPropertySourceUtils - Adding inlined properties to environment: {spring.jmx.enabled=false, org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}
     _____  ____  _          ____   ____   ____ _______
    / ____|/ __ \| |        |  _ \ / __ \ / __ \__   __|
   | (___ | |  | | |  ______| |_) | |  | | |  | | | |
    \___ \| |  | | | |______|  _ <| |  | | |  | | | |
    ____) | |__| | |____    | |_) | |__| | |__| | | |
   |_____/ \___\_\______|   |____/ \____/ \____/  |_|


2019-12-03 21:11:10.245  INFO 425 --- [           main] c.g.m.s.r.c.DbResourceRESTWrapperITCase  : Starting DbResourceRESTWrapperITCase on docker with PID 425 (started by r in /home/r/repo)
2019-12-03 21:11:10.248  INFO 425 --- [           main] c.g.m.s.r.c.DbResourceRESTWrapperITCase  : No active profile set, falling back to default profiles: default
2019-12-03 21:11:11.023  WARN 425 --- [kground-preinit] o.s.h.c.j.Jackson2ObjectMapperBuilder    : For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath
2019-12-03 21:11:13.903  INFO 425 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-12-03 21:11:14.814  INFO 425 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 0 (http)
2019-12-03 21:11:14.833  INFO 425 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2019-12-03 21:11:14.833  INFO 425 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.27]
2019-12-03 21:11:14.980  INFO 425 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2019-12-03 21:11:14.980  INFO 425 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 4690 ms
2019-12-03 21:11:15.380  INFO 425 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Starting...
2019-12-03 21:11:15.824  INFO 425 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Start completed.
2019-12-03 21:11:17.789  INFO 425 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2019-12-03 21:11:18.950  INFO 425 --- [           main] o.s.b.a.e.web.EndpointLinksResolver      : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-12-03 21:11:19.133  INFO 425 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 42516 (http) with context path ''
2019-12-03 21:11:19.139  INFO 425 --- [           main] c.g.m.s.r.c.DbResourceRESTWrapperITCase  : Started DbResourceRESTWrapperITCase in 9.843 seconds (JVM running for 12.273)
2019-12-03 21:11:19.793  INFO 425 --- [o-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-12-03 21:11:19.794  INFO 425 --- [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2019-12-03 21:11:19.818  INFO 425 --- [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 24 ms
2019-12-03 21:11:20.798  INFO 425 --- [o-auto-1-exec-1] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select *
  from (/*
{
  "name": "table",
  "title": "Tables",
  "icon": "table_chart",
  "tags": "ui,schema"
}
*/
select table_schema      /* { "label": "Owner", "description": "Owner of the table", "visible": false } */
     , table_name        /* { "label": "Name", "description": "Name of the table" } */
     , table_type        /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
     , remarks           /* { "label": "Comment", "description": "Comments", "visible": true } */
     , last_modification /* { "label": "Last modification", "description": "Last modification" } */
  from information_schema.tables) q
 where lower(table_schema) like lower('foo')
2019-12-03 21:11:20.898  INFO 425 --- [     parallel-1] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-1,5,main]
2019-12-03 21:11:21.113  INFO 425 --- [o-auto-1-exec-2] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select *
  from (/*
{
  "name": "table",
  "title": "Tables",
  "icon": "table_chart",
  "tags": "ui,schema"
}
*/
select table_schema      /* { "label": "Owner", "description": "Owner of the table", "visible": false } */
     , table_name        /* { "label": "Name", "description": "Name of the table" } */
     , table_type        /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
     , remarks           /* { "label": "Comment", "description": "Comments", "visible": true } */
     , last_modification /* { "label": "Last modification", "description": "Last modification" } */
  from information_schema.tables) q
 where lower(table_schema) like lower('BOOKINGS')
2019-12-03 21:11:21.115  INFO 425 --- [     parallel-2] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-2,5,main]
2019-12-03 21:11:21.306  INFO 425 --- [o-auto-1-exec-3] c.g.m.s.s.s.w.ExecutableSelectQuery      :
/*
{
  "name": "table",
  "title": "Tables",
  "icon": "table_chart",
  "tags": "ui,schema"
}
*/
select table_schema      /* { "label": "Owner", "description": "Owner of the table", "visible": false } */
     , table_name        /* { "label": "Name", "description": "Name of the table" } */
     , table_type        /* { "label": "Type", "description": "Typical types", &quot;visible&quot;: true, &quot;values&quot;: ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
     , remarks           /* { &quot;label&quot;: &quot;Comment&quot;, &quot;description&quot;: &quot;Comments&quot;, &quot;visible&quot;: true } */
     , last_modification /* { &quot;label&quot;: &quot;Last modification&quot;, &quot;description&quot;: &quot;Last modification&quot; } */
  from information_schema.tables
2019-12-03 21:11:21.307  INFO 425 --- [     parallel-3] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-3,5,main]
2019-12-03 21:11:21.587  INFO 425 --- [o-auto-1-exec-3] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select *
  from (/*
{
  &quot;name&quot;: &quot;table&quot;,
  &quot;title&quot;: &quot;Tables&quot;,
  &quot;icon&quot;: &quot;table_chart&quot;,
  &quot;tags&quot;: &quot;ui,schema&quot;
}
*/
select table_schema      /* { &quot;label&quot;: &quot;Owner&quot;, &quot;description&quot;: &quot;Owner of the table&quot;, &quot;visible&quot;: false } */
     , table_name        /* { &quot;label&quot;: &quot;Name&quot;, &quot;description&quot;: "Name of the table" } */
     , table_type        /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
     , remarks           /* { "label": "Comment", "description": "Comments", "visible": true } */
     , last_modification /* { "label": "Last modification", "description": "Last modification" } */
  from information_schema.tables) q
 where lower(table_schema) like lower('BOOKINGS') and lower(table_name) like lower('AIRCRAFTS')
2019-12-03 21:11:21.588  INFO 425 --- [     parallel-4] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-4,5,main]
2019-12-03 21:11:21.666  INFO 425 --- [o-auto-1-exec-4] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select *
  from (/*
{
  "name": "table",
  "title": "Tables",
  "icon": "table_chart",
  "tags": "ui,schema"
}
*/
select table_schema      /* { "label": "Owner", "description": "Owner of the table", "visible": false } */
     , table_name        /* { "label": "Name", "description": "Name of the table" } */
     , table_type        /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
     , remarks           /* { "label": "Comment", "description": "Comments", "visible": true } */
     , last_modification /* { "label": "Last modification", "description": "Last modification" } */
  from information_schema.tables) q
 where lower(table_schema) like lower('not_exist_schema')
2019-12-03 21:11:21.667  INFO 425 --- [     parallel-5] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-5,5,main]
2019-12-03 21:11:21.706  INFO 425 --- [o-auto-1-exec-6] c.g.m.s.s.s.w.ExecutableSelectQuery      :
/*
{
  "name": "table",
  "title": "Tables",
  "icon": "table_chart",
  "tags": "ui,schema"
}
*/
select table_schema      /* { "label": "Owner", "description": "Owner of the table", "visible": false } */
     , table_name        /* { "label": "Name", "description": "Name of the table" } */
     , table_type        /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
     , remarks           /* { "label": "Comment", "description": "Comments", "visible": true } */
     , last_modification /* { "label": "Last modification", "description": "Last modification" } */
  from information_schema.tables
2019-12-03 21:11:21.707  INFO 425 --- [     parallel-6] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-6,5,main]
2019-12-03 21:11:21.909  INFO 425 --- [o-auto-1-exec-5] c.g.m.s.s.s.w.ExecutableSelectQuery      :
select *
  from (/*
{
  "name": "table",
  "title": "Tables",
  "icon": "table_chart",
  "tags": "ui,schema"
}
*/
select table_schema      /* { "label": "Owner", "description": "Owner of the table", "visible": false } */
     , table_name        /* { "label": "Name", "description": "Name of the table" } */
     , table_type        /* { "label": "Type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */
     , remarks           /* { "label": "Comment", "description": "Comments", "visible": true } */
     , last_modification /* { "label": "Last modification", "description": "Last modification" } */
  from information_schema.tables) q
 where lower(table_schema) like lower('BOOKINGS') and lower(table_name) like lower('AIRPORTS')
2019-12-03 21:11:21.912  INFO 425 --- [     parallel-7] c.g.m.s.s.s.w.ExecutableSelectQuery      : Thread[parallel-7,5,main]
[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 13.683 s - in com.github.mgramin.sqlboot.rest.controllers.DbResourceRESTWrapperITCase
2019-12-03 21:11:22.099  INFO 425 --- [extShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor  : Shutting down ExecutorService 'applicationTaskExecutor'
2019-12-03 21:11:22.101  INFO 425 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2019-12-03 21:11:22.106  INFO 425 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 8, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- maven-failsafe-plugin:2.22.2:verify (default) @ sql-boot ---
[INFO]
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ sql-boot ---
[INFO] Installing /home/r/repo/target/sql-boot-0.5.1.jar to /home/r/.m2/repository/com/github/mgramin/com/github/mgramin/sqlboot/sql-boot/0.5.1/sql-boot-0.5.1.jar
[INFO] Installing /home/r/repo/pom.xml to /home/r/.m2/repository/com/github/mgramin/com/github/mgramin/sqlboot/sql-boot/0.5.1/sql-boot-0.5.1.pom
[INFO] Installing /home/r/repo/target/sql-boot.zip to /home/r/.m2/repository/com/github/mgramin/com/github/mgramin/sqlboot/sql-boot/0.5.1/sql-boot-0.5.1.zip
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:28 min
[INFO] Finished at: 2019-12-03T21:11:24+00:00
[INFO] Final Memory: 86M/662M
[INFO] ------------------------------------------------------------------------
+ mv /home/r/repo .
++ whoami
+ chown -R root repo
+ '[' -n '' ']'
++ whoami
+ sudo chown -R rultor repo
+ cd repo
+ git push origin master
To git@github.com:CrocInc/sql-boot.git
   c71797a..355c08b  master -> master
container 322ebefc71f5a614f8fd93a72414b541f099143ac7487250ff483327dfb21b95 is dead
Tue Dec  3 22:11:37 CET 2019