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 28097
+ echo '2.0-SNAPSHOT BUILD'
2.0-SNAPSHOT BUILD
+ date
Tue Dec  3 21:55:26 CET 2019
+ uptime
 21:55:26 up 47 days, 19:04,  0 users,  load average: 4.67, 4.73, 4.70
+ 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.71
++ echo 4.71 '>' 30
++ bc
+ '[' 0 -eq 1 ']'
+ echo 'load average is 4.71, low enough to run a new Docker container'
load average is 4.71, 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
bce60eb7a46b: Waiting
523858da47c2: Waiting
1b60cbdb6c97: Waiting
b3847e560884: Waiting
a3fb022b378b: Waiting
d3f3abe9b88a: Waiting
6c71dd934110: Waiting
33d266232bf5: Waiting
a1205d85eee6: Waiting
7e74813b42ed: Waiting
d9b81a88c6a6: Waiting
81a9dd64cefb: Waiting
e490f1f269e4: Waiting
026d8859d391: Waiting
706056115e84: Waiting
3e4544aabf74: Waiting
8f99443cb3e2: Waiting
bd11dd1b733c: Waiting
2adacba61ab3: Waiting
2b665347139c: Waiting
5903f1c5734a: Waiting
ceb6b212c107: Waiting
a4e23645b71e: Waiting
159768371a7e: Waiting
e5b84ac582ec: Waiting
f89de76765d1: Waiting
ed41cb72e5c9: Download complete
5fbf74db61f1: Download complete
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
523858da47c2: Verifying Checksum
523858da47c2: Download complete
bce60eb7a46b: Pull complete
81a9dd64cefb: Verifying Checksum
81a9dd64cefb: Download complete
3e4544aabf74: Verifying Checksum
3e4544aabf74: Download complete
ceb6b212c107: Verifying Checksum
ceb6b212c107: Download complete
8f99443cb3e2: Verifying Checksum
8f99443cb3e2: Download complete
159768371a7e: Verifying Checksum
159768371a7e: Download complete
0c4c219484bb: Verifying Checksum
0c4c219484bb: Download complete
a1205d85eee6: Verifying Checksum
a1205d85eee6: Download complete
7e74813b42ed: Download complete
d3f3abe9b88a: Verifying Checksum
d3f3abe9b88a: Download complete
026d8859d391: Verifying Checksum
026d8859d391: Download complete
523858da47c2: Pull complete
b3847e560884: Download complete
1b60cbdb6c97: Pull complete
a3fb022b378b: Pull complete
6c71dd934110: Verifying Checksum
6c71dd934110: Download complete
33d266232bf5: Download complete
d3f3abe9b88a: Pull complete
ceb6b212c107: Pull complete
81a9dd64cefb: Pull complete
8ceee8c53648: Verifying Checksum
8ceee8c53648: Download complete
d9b81a88c6a6: Download complete
3e4544aabf74: Pull complete
8f99443cb3e2: Pull complete
159768371a7e: Pull complete
0c4c219484bb: Pull complete
a1205d85eee6: Pull complete
7e74813b42ed: Pull complete
026d8859d391: Pull complete
e5b84ac582ec: Verifying Checksum
e5b84ac582ec: Download complete
5903f1c5734a: Verifying Checksum
5903f1c5734a: Download complete
2adacba61ab3: Verifying Checksum
2adacba61ab3: Download complete
a4e23645b71e: Verifying Checksum
a4e23645b71e: Download complete
e490f1f269e4: Verifying Checksum
e490f1f269e4: Download complete
2b665347139c: Verifying Checksum
2b665347139c: Download complete
f89de76765d1: Verifying Checksum
f89de76765d1: Download complete
bd11dd1b733c: Verifying Checksum
bd11dd1b733c: Download complete
6913bd7aa42e: Verifying Checksum
6913bd7aa42e: Download complete
6913bd7aa42e: Pull complete
706056115e84: Verifying Checksum
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 21:55 .
drwxrwxrwt 12 root   root   684032 Dec  3 21:59 ..
-rw-rw-r--  1 rultor rultor    444 Dec  3 21:59 end.sh
-rwxrwxr-x  1 rultor rultor    338 Dec  3 21:55 entry.sh
-rw-rw-r--  1 rultor rultor      6 Dec  3 21:55 pid
drwxrwxr-x  5 rultor rultor   4096 Dec  3 21:55 repo
-rwxrwxr-x  1 rultor rultor   5407 Dec  3 21:55 run.sh
-rw-rw-r--  1 rultor rultor    394 Dec  3 21:55 script.sh
-rw-rw-r--  1 rultor rultor  10988 Dec  3 21:59 stdout
++ pwd
++ pwd
+ docker run -t --rm -v /tmp/rultor-Q6uY:/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-Q6uY/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 49.7 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 2632.3 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 350.4 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 900.3 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 137.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 319.9 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 738.2 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 804.1 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 389.8 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 200.2 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 205.5 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 204.4 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 329.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 377.8 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 230.3 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 135.6 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 408.4 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 202.3 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 74.9 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 215.8 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 1545.2 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 1693.0 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 526.8 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 1199.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 1724.8 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 696.1 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 4630.7 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 355.9 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 536.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 252.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 507.7 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 1765.3 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 687.5 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 1340.1 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 447.1 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 559.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 243.8 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 1648.5 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 356.7 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 497.0 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 1186.6 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 602.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.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 4249.3 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 261.1 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 1347.5 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 81.9 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 68.2 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 218.8 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 78.0 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 144.9 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 82.6 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 720.2 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 86.0 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 76.2 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 86.2 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 84.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 1519.1 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 39.0 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 580.7 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 827.3 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 204.9 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 187.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 642.0 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 333.7 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 2269.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 641.7 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 48.3 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 761.3 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 144.0 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 221.5 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 344.0 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 353.5 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 128.8 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 394.3 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 565.1 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 94.5 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 268.3 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 743.9 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 223.2 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 803.2 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 566.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 116.8 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 115.9 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 57.0 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 91.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 104.0 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 129.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 123.1 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 980.8 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 444.8 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 135.9 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 733.3 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 726.7 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 845.7 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 205.5 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 252.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 143.2 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 83.4 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 139.2 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 843.4 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 60.9 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 86.6 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 364.0 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 186.3 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 132.0 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 79.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 83.2 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 143.6 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 537.5 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 2201.6 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 272.4 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 269.4 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 256.0 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 2275.4 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 354.7 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 129.2 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 177.3 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 290.1 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 111.7 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 2112.5 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 228.5 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 93.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 165.4 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 131.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.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 92.1 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 752.5 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 159.6 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 59.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 579.4 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 115.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 174.1 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 555.8 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 548.1 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 1832.3 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 115.5 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 105.6 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 110.4 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 117.1 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 81.3 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 79.1 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 93.3 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 74.2 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 69.5 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 48.5 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 2421.7 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 540.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 1859.4 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 221.7 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 79.8 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 258.2 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 130.6 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 203.9 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 48.0 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 1259.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 2512.3 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 361.5 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 65.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 49.2 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 161.6 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 439.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 967.8 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 113.2 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 146.4 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 226.1 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 305.1 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 370.9 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 508.6 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 129.0 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 163.5 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 78.7 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 579.2 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 2227.0 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 129.9 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 128.0 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 982.8 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 388.8 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 336.8 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 144.1 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 83.0 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 340.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:4http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar (18 KB at 335.8 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
Downloaded:5http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.60/kotlin-stdlib-jdk8-1.3.60.jar (16 KB at 285.2 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.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 35.5 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/springframework/boot/spring-boot-starter/2.2.1.RELEASE/spring-boot-starter-2.2.1.RELEASE.jar (397 B at 4.9 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/jetbrains/kotlin/kotlin-stdlib-common/1.3.60/kotlin-stdlib-common-1.3.60.jar (167 KB at 1776.4 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 3067.9 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/boot/spring-boot-starter-logging/2.2.1.RELEASE/spring-boot-starter-logging-2.2.1.RELEASE.jar (405 B at 0.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:7http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar (284 KB at 487.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.2.1.RELEASE/spring-boot-2.2.1.RELEASE.jar (1015 KB at 1622.7 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:Bhttp://repo.maven.apache.org/maven2/org/springframework/spring-context/5.2.1.RELEASE/spring-context-5.2.1.RELEASE.jar (1188 KB at 1894.5 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: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 26.1 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:Bhttp://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.29/jul-to-slf4j-1.7.29.jar (5 KB at 6.5 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:Bhttp://repo.maven.apache.org/maven2/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar (25 KB at 33.7 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/org/springframework/boot/spring-boot-autoconfigure/2.2.1.RELEASE/spring-boot-autoconfigure-2.2.1.RELEASE.jar (1356 KB at 1852.3 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: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.12.1/log4j-api-2.12.1.jar (271 KB at 367.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.25/snakeyaml-1.25.jar
Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar (461 KB at 613.6 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: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.2.1.RELEASE/spring-jcl-5.2.1.RELEASE.jar (24 KB at 30.6 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: 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 (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:1http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.25/snakeyaml-1.25.jar (297 KB at 345.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar
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.jar (154 KB at 178.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar
Downloaded: http://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 236.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar
Downloaded: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar (30 KB at 32.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar
Downloaded: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar (118 KB at 127.0 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: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar (53 KB at 54.2 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: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar (218 KB at 226.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: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.60/kotlin-reflect-1.3.60.jar (2803 KB at 2850.5 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: http://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 115.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.13.2/assertj-core-3.13.2.jar
Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter/5.5.2/junit-jupiter-5.5.2.jar (7 KB at 6.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/hamcrest/hamcrest/2.1/hamcrest-2.1.jar
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 43.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/mockito/mockito-junit-jupiter/3.1.0/mockito-junit-jupiter-3.1.0.jar (5 KB at 4.9 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 28.8 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.3 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 113.6 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/springframework/boot/spring-boot-starter-json/2.2.1.RELEASE/spring-boot-starter-json-2.2.1.RELEASE.jar (403 B at 0.3 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/spring-core/5.2.1.RELEASE/spring-core-5.2.1.RELEASE.jar (1399 KB at 1237.2 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: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.3/xmlunit-core-2.6.3.jar (165 KB at 145.5 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.jar
Downloaded: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 (10 KB at 7.8 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: http://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 28.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: 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 (404 B at 0.3 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:7http://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 82.6 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: 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 190.0 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: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.2.1.RELEASE/spring-test-5.2.1.RELEASE.jar (657 KB at 496.4 KB/sec)
Downloading: http://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/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: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar
Downloaded:5http://repo.maven.apache.org/maven2/jakarta/validation/jakarta.validation-api/2.0.1/jakarta.validation-api-2.0.1.jar (91 KB at 65.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:5http://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 182.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.5.1/classmate-1.5.1.jar
Downloaded:6http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.4.1.Final/jboss-logging-3.4.1.Final.jar (60 KB at 40.8 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 44.7 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:7http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.18.Final/hibernate-validator-6.0.18.Final.jar (1129 KB at 624.2 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: http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.2.1.RELEASE/spring-beans-5.2.1.RELEASE.jar (669 KB at 366.6 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-aop/5.2.1.RELEASE/spring-aop-5.2.1.RELEASE.jar (364 KB at 181.3 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:4http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.2.1.RELEASE/spring-expression-5.2.1.RELEASE.jar (276 KB at 128.6 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/spring-web/5.2.1.RELEASE/spring-web-5.2.1.RELEASE.jar (1382 KB at 640.9 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/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/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.jar
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.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:7http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.2.1.RELEASE/spring-webmvc-5.2.1.RELEASE.jar (924 KB at 401.7 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/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.jar (496 KB at 207.2 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/netty/netty-codec-http/4.1.43.Final/netty-codec-http-4.1.43.Final.jar (581 KB at 237.0 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/org/assertj/assertj-core/3.13.2/assertj-core-3.13.2.jar (4374 KB at 1782.1 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 126.3 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:4http://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 8.7 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 45.9 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:Bhttp://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 173.4 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:3http://repo.maven.apache.org/maven2/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar (233 KB at 89.1 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:5http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.43.Final/netty-handler-4.1.43.Final.jar (431 KB at 164.3 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:5http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.jar (55 KB at 20.7 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/apache/tomcat/embed/tomcat-embed-core/9.0.27/tomcat-embed-core-9.0.27.jar (3285 KB at 1250.0 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:1http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.jar (13 KB at 4.9 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:2http://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 40.6 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:2http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.43.Final/netty-resolver-4.1.43.Final.jar (33 KB at 11.7 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: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.43.Final/netty-buffer-4.1.43.Final.jar (271 KB at 98.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.jar
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.jar (404 B at 0.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:5http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.43.Final/netty-common-4.1.43.Final.jar (592 KB at 208.8 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/io/netty/netty-transport/4.1.43.Final/netty-transport-4.1.43.Final.jar (463 KB at 162.7 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/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.jar (150 KB at 52.2 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/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar (12 KB at 3.8 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/org/springframework/spring-webflux/5.2.1.RELEASE/spring-webflux-5.2.1.RELEASE.jar (823 KB at 282.9 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:2http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.2.1.RELEASE/spring-tx-5.2.1.RELEASE.jar (307 KB at 104.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.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 37.6 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/springframework/spring-jdbc/5.2.1.RELEASE/spring-jdbc-5.2.1.RELEASE.jar (397 KB at 134.3 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/org/jetbrains/kotlin/kotlin-test-junit/1.3.60/kotlin-test-junit-1.3.60.jar (5 KB at 1.4 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:5http://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/jetbrains/kotlin/kotlin-test/1.3.60/kotlin-test-1.3.60.jar (31 KB at 10.2 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:2http://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.5 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/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/junit/platform/junit-platform-engine/1.5.2/junit-platform-engine-1.5.2.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/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar
Downloaded:0http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar (8 KB at 2.5 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/io/projectreactor/kotlin/reactor-kotlin-extensions/1.0.0.RELEASE/reactor-kotlin-extensions-1.0.0.RELEASE.jar (42 KB at 13.7 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-engine/1.5.2/junit-platform-engine-1.5.2.jar (161 KB at 52.3 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 69.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:6http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.5.2/junit-platform-commons-1.5.2.jar (90 KB at 29.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.1.0/mockito-core-3.1.0.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.5.2/junit-vintage-engine-5.5.2.jar (56 KB at 17.9 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/jupiter/junit-jupiter-api/5.5.2/junit-jupiter-api-5.5.2.jar (139 KB at 44.0 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: 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 164.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/objenesis/objenesis/2.6/objenesis-2.6.jar (55 KB at 16.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.jar
Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.10.2/byte-buddy-agent-1.10.2.jar (253 KB at 76.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hubspot/jinjava/jinjava/2.5.2/jinjava-2.5.2.jar
Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.3.0.RELEASE/reactor-core-3.3.0.RELEASE.jar (1492 KB at 446.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar
Downloaded: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.jar (42 KB at 12.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/22.0/guava-22.0.jar
Downloaded: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/3.1.0/mockito-core-3.1.0.jar (578 KB at 171.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.jar
Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.29/slf4j-api-1.7.29.jar (41 KB at 12.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar
Downloaded:8http://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.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar
Downloaded:2http://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar (9 KB at 2.5 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:Bhttp://repo.maven.apache.org/maven2/com/hubspot/jinjava/jinjava/2.5.2/jinjava-2.5.2.jar (525 KB at 145.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.2/re2j-1.2.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.3/jsoup-1.10.3.jar (348 KB at 95.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar
Downloaded:1http://repo.maven.apache.org/maven2/com/google/re2j/re2j/1.2/re2j-1.2.jar (124 KB at 33.5 KB/sec)
Downloading:1http://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 203.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/3.0.1/annotations-3.0.1.jar
Downloaded: http://repo.maven.apache.org/maven2/com/google/code/findbugs/annotations/3.0.1/annotations-3.0.1.jar (38 KB at 10.0 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: http://repo.maven.apache.org/maven2/commons-net/commons-net/3.3/commons-net-3.3.jar (275 KB at 71.0 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: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.9/commons-lang3-3.9.jar (493 KB at 126.4 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/com/fasterxml/jackson/core/jackson-annotations/2.10.0/jackson-annotations-2.10.0.jar (67 KB at 16.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/ch/obermuhlner/big-math/2.0.0/big-math-2.0.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/ch/obermuhlner/big-math/2.0.0/big-math-2.0.0.jar (40 KB at 10.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.200/h2-1.4.200.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.10.0/jackson-core-2.10.0.jar (341 KB at 83.2 KB/sec)
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/com/google/guava/guava/22.0/guava-22.0.jar (2515 KB at 613.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.jar
Downloaded:2http://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.jar (70 KB at 16.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: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.jar (110 KB at 26.2 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 10.8 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-models/1.5.15/swagger-models-1.5.15.jar (141 KB at 33.0 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:Bhttp://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.jar (21 KB at 4.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.29/slf4j-ext-1.7.29.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.2 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/org/slf4j/slf4j-ext/1.7.29/slf4j-ext-1.7.29.jar (38 KB at 8.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.jar
Downloaded:Bhttp://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.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:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.10.0/jackson-databind-2.10.0.jar (1369 KB at 315.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.27/tomcat-juli-9.0.27.jar
Downloaded:3http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.10.2/byte-buddy-1.10.2.jar (3265 KB at 749.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.27/tomcat-juli-9.0.27.jar (47 KB at 10.7 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.12.4/hazelcast-3.12.4.jar
Downloaded: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.1/cache-api-1.1.1.jar (51 KB at 11.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.27/tomcat-jdbc-9.0.27.jar (147 KB at 33.3 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: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.jar (132 KB at 29.9 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:Bhttp://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:1http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar (235 KB at 52.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.3.1/micrometer-core-1.3.1.jar
Downloaded:2http://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.0 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/springframework/boot/spring-boot-actuator-autoconfigure/2.2.1.RELEASE/spring-boot-actuator-autoconfigure-2.2.1.RELEASE.jar (482 KB at 102.6 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 97.7 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:Bhttp://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.11/HdrHistogram-2.1.11.jar (121 KB at 25.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar
Downloaded:7http://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/io/micrometer/micrometer-registry-prometheus/1.3.1/micrometer-registry-prometheus-1.3.1.jar (26 KB at 5.3 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar (30 KB at 6.1 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar (59 KB at 12.2 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/com/h2database/h2/1.4.200/h2-1.4.200.jar (2250 KB at 469.2 KB/sec)
Downloaded:Khttp://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.12.4/hazelcast-3.12.4.jar (11564 KB at 1988.6 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 37.6 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 275.1 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:4http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar (5 KB at 182.1 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 4518.3 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 139.0 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 1077.9 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 155.1 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 93.0 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 125.6 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 119.0 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 81.0 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 844.3 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 85.7 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 173.0 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 107.8 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 36.0 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 361.0 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 196.6 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 284.6 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 152.9 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 78.2 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 119.0 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 255.5 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 576.8 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 164.2 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 103.1 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 152.8 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 146.9 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 93.3 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:3http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar (17 KB at 599.7 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:6http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar (30 KB at 816.1 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: http://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 807.6 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: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar (155 KB at 2342.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.jar
Downloaded: http://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 709.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
Downloaded: http://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 176.6 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/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar (298 KB at 1731.7 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-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (575 KB at 3072.4 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 1224.2 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/ow2/asm/asm/6.2.1/asm-6.2.1.jar (111 KB at 492.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.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 127.6 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar
Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar (78 KB at 301.3 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/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar (172 KB at 650.6 KB/sec)
Downloaded:3http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar (50 KB at 174.5 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 413.1 KB/sec)
Downloaded:1http://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 116.3 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar (1185 KB at 3514.9 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 44.5 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 176.5 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 234.4 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 530.8 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:2http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar (25 KB at 567.5 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/antlr-runtime/3.5/antlr-runtime-3.5.jar (164 KB at 2600.1 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar (146 KB at 1382.3 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.jar (247 KB at 2147.0 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.jar (231 KB at 2077.4 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.jar (605 KB at 3050.9 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 216.6 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 241.3 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 259.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 161.2 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 53.7 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 92.0 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 371.0 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 128.0 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/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.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
Downloaded:2http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (9 KB at 218.0 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 954.3 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar (78 KB at 1185.0 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 2289.1 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 2717.9 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 75.8 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 603.3 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 108.4 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 57.4 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 93.5 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 80.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 62.2 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 82.3 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 115.3 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 21.8 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 40.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 67.5 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-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
Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.60/kotlin-compiler-1.3.60.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.jar (14 KB at 421.6 KB/sec)
Downloading:3http://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 1246.7 KB/sec)
Downloading: http://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-compiler/1.3.60/kotlin-scripting-compiler-1.3.60.jar (282 KB at 2249.2 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-common/1.3.60/kotlin-scripting-common-1.3.60.jar (169 KB at 1334.8 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:2http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.60/kotlin-scripting-jvm-1.3.60.jar (168 KB at 685.2 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/kotlin/kotlin-scripting-compiler-impl/1.3.60/kotlin-scripting-compiler-impl-1.3.60.jar (289 KB at 1009.9 KB/sec)
Downloading:2http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar
Downloaded:5http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.jar (26 KB at 87.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar (5 KB at 14.7 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.jar (560 KB at 1787.7 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar (20 KB at 60.6 KB/sec)
Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.2.1/kotlinx-coroutines-core-1.2.1.jar (1089 KB at 3457.1 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 10019.0 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 83.8 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 600.2 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 346.6 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 249.4 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 202.1 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 143.4 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 736.8 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: http://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 273.1 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar
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 6526.7 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 534.7 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/ow2/asm/asm/6.2/asm-6.2.jar (109 KB at 1034.4 KB/sec)
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 1427.9 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar (310 KB at 2160.9 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 1781.2 KB/sec)
Downloaded: http://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 40.4 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 340.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 108.3 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 129.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 103.9 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-engine/1.3.1/junit-platform-engine-1.3.1.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-commons/1.3.1/junit-platform-commons-1.3.1.jar
Downloaded:8http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar (3 KB at 57.1 KB/sec)
Downloading:9http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar
Downloaded:1http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.jar (77 KB at 1949.5 KB/sec)
Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.jar (132 KB at 2805.3 KB/sec)
Downloaded:6http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar (7 KB at 331.1 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 1072.8 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 1490.8 KB/sec)
[INFO]
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest
21:00:16.454 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:00:16.500 [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:00:16.593 [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:00:16.697 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to process context configuration [ContextConfigurationAttributes@6af90849 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:00:16.790 [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:00:16.793 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest]: using defaults.
21:00:16.794 [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:00:16.844 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@b0f2d91, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@7243145f, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@15c6027d, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5927f904, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2bb62414, org.springframework.test.context.transaction.TransactionalTestExecutionListener@413d2cd1, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@644d1b61, org.springframework.test.context.event.EventPublishingTestExecutionListener@2443135, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@184823ed, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@30bbcf91, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@3ca14cf4, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1f4f0fcc, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@46c10083]
21:00:16.848 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
21:00:16.920 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@4a6c0f38, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:16.922 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to load context from [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
21:00:16.922 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
21:00:17.065 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:00:17.246 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loading from YAML: class path resource [application.yml]
21:00:17.327 [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:00:17.327 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loaded 1 document from YAML resource: class path resource [application.yml]
21:00:17.555 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:00:17.556 [main] DEBUG org.springframework.test.context.support.AnnotationConfigContextLoader - Registering component classes: {class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList}
21:00:17.616 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@2c9d90fc
21:00:17.636 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
21:00:18.096 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:18.135 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:18.214 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:18.215 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:18.812 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.context.ImportsContextCustomizer$ImportsCleanupPostProcessor'
21:00:18.994 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
21:00:19.000 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
21:00:19.002 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBeanDefinitionValidator'
21:00:20.026 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
21:00:20.028 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
21:00:20.028 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
21:00:20.034 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
21:00:20.035 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
21:00:20.039 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
21:00:20.041 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
21:00:20.041 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
21:00:20.041 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory'
21:00:20.045 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'methodValidationPostProcessor'
21:00:20.105 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
21:00:20.153 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceInitializerPostProcessor'
21:00:20.161 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
21:00:20.162 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
21:00:20.169 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
21:00:20.192 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
21:00:20.199 [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@2c9d90fc'
21:00:20.205 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
21:00:20.206 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
21:00:20.217 [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:00:20.225 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource'
21:00:20.233 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor'
21:00:20.234 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
21:00:20.415 [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:00:20.415 [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:00:20.435 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleEndpointList'
21:00:20.436 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class com.github.mgramin.sqlboot.model.connection.SimpleEndpointList$$EnhancerBySpringCGLIB$$fd39fd09] - unable to determine constructor/method parameter names
21:00:20.853 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
21:00:20.855 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
21:00:20.856 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
21:00:20.858 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
21:00:20.859 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
21:00:20.874 [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@2c9d90fc'
21:00:20.875 [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:00:20.878 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
21:00:20.881 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
21:00:20.883 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
21:00:20.885 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule'
21:00:20.909 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
21:00:20.911 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper'
21:00:20.913 [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@2c9d90fc'
21:00:20.913 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
21:00:20.919 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule'
21:00:20.919 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
21:00:20.948 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
21:00:21.246 [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:00:21.310 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$DefaultCodecsConfiguration'
21:00:21.312 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultCodecCustomizer'
21:00:21.313 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:00:21.318 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.codec-org.springframework.boot.autoconfigure.codec.CodecProperties'
21:00:21.322 [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:00:21.323 [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:00:21.327 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
21:00:21.330 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonCodecCustomizer'
21:00:21.332 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper'
21:00:21.334 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
21:00:21.336 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
21:00:21.339 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultValidator'
21:00:21.478 [main] DEBUG org.jboss.logging - Logging Provider: org.jboss.logging.Log4j2LoggerProvider
21:00:21.481 [main] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.18.Final
21:00:21.501 [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:00:21.526 [main] DEBUG org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL
21:00:21.538 [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:00:21.545 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
21:00:21.545 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
21:00:21.546 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1
21:00:21.550 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration.
21:00:21.552 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via user class loader
21:00:21.553 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL
21:00:21.553 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
21:00:21.553 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only.
21:00:21.874 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
21:00:21.875 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver.
21:00:21.875 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
21:00:21.875 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
21:00:21.875 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
21:00:21.934 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
21:00:21.937 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder'
21:00:21.938 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
21:00:21.942 [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:00:21.946 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastServerConfiguration'
21:00:21.950 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration'
21:00:21.952 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.hazelcast-org.springframework.boot.autoconfigure.hazelcast.HazelcastProperties'
21:00:21.955 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
21:00:21.957 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
21:00:21.957 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:00:21.972 [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:00:21.991 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.h2.Driver found in Thread context class loader sun.misc.Launcher$AppClassLoader@18b4aac2
21:00:22.020 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker'
21:00:22.022 [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:00:22.022 [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@2c9d90fc'
21:00:22.044 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:22.045 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration:
21:00:22.048 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false
21:00:22.048 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true
21:00:22.048 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none
21:00:22.048 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none
21:00:22.049 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery.............none
21:00:22.049 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000
21:00:22.049 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none
21:00:22.049 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none
21:00:22.049 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none
21:00:22.049 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=<masked>}
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."org.h2.Driver"
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{}
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................600000
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........0
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................1800000
21:00:22.050 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................10
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................10
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - password........................<masked>
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-1"
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal
21:00:22.051 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default
21:00:22.052 [main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"sa"
21:00:22.052 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000
21:00:22.052 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
21:00:22.605 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:testdb user=SA
21:00:22.609 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
21:00:22.644 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:22.645 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/schema.sql]
21:00:22.661 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema hr if exists cascade
21:00:22.662 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema hr
21:00:22.683 [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:00:22.685 [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:00:22.686 [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:00:22.710 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Pool stats (total=1, active=1, idle=0, waiting=0)
21:00:22.713 [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:00:22.713 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:testdb user=SA
21:00:22.714 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:testdb user=SA
21:00:22.715 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:testdb user=SA
21:00:22.715 [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:00:22.715 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.jobs is 'all jobs'
21:00:22.715 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:testdb user=SA
21:00:22.716 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:testdb user=SA
21:00:22.717 [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:00:22.717 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:testdb user=SA
21:00:22.718 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.persons is 'all persons'
21:00:22.718 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:testdb user=SA
21:00:22.719 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:testdb user=SA
21:00:22.720 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:testdb user=SA
21:00:22.720 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=10, active=1, idle=9, waiting=0)
21:00:22.734 [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:00:22.738 [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:00:22.739 [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:00:22.741 [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:00:22.743 [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:00:22.744 [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:00:22.745 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema bookings if exists cascade
21:00:22.745 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema bookings
21:00:22.748 [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:00:22.749 [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:00:22.750 [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:00:22.751 [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:00:22.752 [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:00:22.753 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/schema.sql] in 107 ms.
21:00:22.758 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:22.758 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:22.758 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/data.sql]
21:00:22.764 [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:00:22.765 [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:00:22.766 [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:00:22.767 [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:00:22.767 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/data.sql] in 9 ms.
21:00:22.768 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
21:00:22.770 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
21:00:22.773 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
21:00:22.777 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$TomcatDataSourcePoolMetadataProviderConfiguration'
21:00:22.780 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatPoolDataSourceMetadataProvider'
21:00:22.782 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration'
21:00:22.785 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration'
21:00:22.787 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration'
21:00:22.790 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointAdaptersConfiguration'
21:00:22.793 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration$LegacyReactiveHealthEndpointCompatibilityConfiguration'
21:00:22.797 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthIndicatorRegistry'
21:00:22.798 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthContributorRegistry'
21:00:22.799 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.ReactiveHealthEndpointConfiguration'
21:00:22.803 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicator'
21:00:22.803 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration'
21:00:22.808 [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:00:22.813 [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:00:22.821 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pingHealthContributor'
21:00:22.822 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration'
21:00:22.826 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbHealthContributor'
21:00:22.827 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration'
21:00:22.827 [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:00:22.839 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource'
21:00:22.850 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointGroups'
21:00:22.851 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration'
21:00:22.854 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointProperties'
21:00:22.855 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration'
21:00:22.858 [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:00:22.863 [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:00:22.875 [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@2c9d90fc'
21:00:22.875 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'healthEndpointProperties'
21:00:22.881 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusAggregator'
21:00:22.881 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'healthEndpointProperties'
21:00:22.891 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper'
21:00:22.891 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'healthEndpointProperties'
21:00:22.905 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator'
21:00:22.905 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'pingHealthContributor'
21:00:22.905 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'dbHealthContributor'
21:00:22.905 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:00:22.928 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'reactiveHealthContributorRegistry'
21:00:22.933 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration'
21:00:22.934 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthAggregator'
21:00:22.935 [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:00:22.940 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusHttpMapper'
21:00:22.941 [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:00:22.943 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthIndicatorRegistry'
21:00:22.943 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthContributorRegistry'
21:00:22.943 [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@2c9d90fc'
21:00:22.943 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:00:22.952 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthIndicatorRegistry' via factory method to bean named 'healthContributorRegistry'
21:00:22.957 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpoint'
21:00:22.958 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry'
21:00:22.958 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups'
21:00:22.968 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
21:00:22.970 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
21:00:22.974 [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:00:22.977 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration'
21:00:22.980 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'envInfoContributor'
21:00:22.981 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'envInfoContributor' via factory method to bean named 'environment'
21:00:22.986 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties'
21:00:22.990 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration'
21:00:22.993 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'infoEndpoint'
21:00:22.996 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration'
21:00:22.998 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointOperationParameterMapper'
21:00:23.010 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor'
21:00:23.011 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment'
21:00:23.018 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
21:00:23.020 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'micrometerClock'
21:00:23.025 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesMeterFilter'
21:00:23.025 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:00:23.040 [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:00:23.056 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration'
21:00:23.059 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusConfig'
21:00:23.060 [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:00:23.066 [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:00:23.076 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusMeterRegistry'
21:00:23.077 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'collectorRegistry'
21:00:23.080 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'prometheusConfig'
21:00:23.080 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'collectorRegistry'
21:00:23.080 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'micrometerClock'
21:00:23.117 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
21:00:23.117 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration'
21:00:23.120 [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:00:23.129 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmGcMetrics'
21:00:23.129 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration'
21:00:23.138 [main] DEBUG io.micrometer.core.util.internal.logging.InternalLoggerFactory - Using SLF4J as the default logging framework
21:00:23.145 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmMemoryMetrics'
21:00:23.147 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmThreadMetrics'
21:00:23.150 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'classLoaderMetrics'
21:00:23.152 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'logbackMetrics'
21:00:23.152 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration'
21:00:23.156 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'uptimeMetrics'
21:00:23.156 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration'
21:00:23.161 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'processorMetrics'
21:00:23.164 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileDescriptorMetrics'
21:00:23.224 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration'
21:00:23.227 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration'
21:00:23.228 [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:00:23.254 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration'
21:00:23.266 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration'
21:00:23.268 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
21:00:23.271 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gsonBuilder'
21:00:23.271 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardGsonBuilderCustomizer'
21:00:23.272 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
21:00:23.277 [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:00:23.280 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gsonBuilder' via factory method to bean named 'standardGsonBuilderCustomizer'
21:00:23.298 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gson'
21:00:23.299 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gson' via factory method to bean named 'gsonBuilder'
21:00:23.345 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
21:00:23.347 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter'
21:00:23.347 [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:00:23.361 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
21:00:23.363 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
21:00:23.363 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
21:00:23.371 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
21:00:23.374 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
21:00:23.376 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
21:00:23.378 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters'
21:00:23.414 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
21:00:23.416 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateBuilder'
21:00:23.418 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRestTemplateCustomizer'
21:00:23.418 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration'
21:00:23.419 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateExchangeTagsProvider'
21:00:23.423 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:00:23.423 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'restTemplateExchangeTagsProvider'
21:00:23.423 [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:00:23.431 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.WebClientMetricsConfiguration'
21:00:23.433 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultWebClientExchangeTagsProvider'
21:00:23.437 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsWebClientCustomizer'
21:00:23.438 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:00:23.438 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'defaultWebClientExchangeTagsProvider'
21:00:23.438 [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:00:23.442 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration'
21:00:23.445 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration'
21:00:23.445 [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@659ac28c'
21:00:23.447 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
21:00:23.448 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
21:00:23.450 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration'
21:00:23.451 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration'
21:00:23.453 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcTemplate'
21:00:23.453 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
21:00:23.455 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource'
21:00:23.455 [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:00:23.468 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration'
21:00:23.469 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'namedParameterJdbcTemplate'
21:00:23.470 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate'
21:00:23.477 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration'
21:00:23.479 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration'
21:00:23.481 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder'
21:00:23.481 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
21:00:23.484 [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:00:23.486 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration'
21:00:23.488 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager'
21:00:23.488 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'dataSource'
21:00:23.490 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers'
21:00:23.490 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration'
21:00:23.492 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties'
21:00:23.507 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration'
21:00:23.509 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration'
21:00:23.510 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration'
21:00:23.512 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration'
21:00:23.513 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionTemplate'
21:00:23.513 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager'
21:00:23.519 [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:00:23.521 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientResourceFactory'
21:00:23.529 [main] DEBUG reactor.util.Loggers$LoggerFactory - Using Slf4j logging framework
21:00:23.573 [main] DEBUG io.netty.util.internal.logging.InternalLoggerFactory - Using SLF4J as the default logging framework
21:00:23.577 [main] DEBUG io.netty.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false
21:00:23.577 [main] DEBUG io.netty.util.internal.PlatformDependent0 - Java version: 8
21:00:23.578 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available
21:00:23.579 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.copyMemory: available
21:00:23.579 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Buffer.address: available
21:00:23.580 [main] DEBUG io.netty.util.internal.PlatformDependent0 - direct buffer constructor: available
21:00:23.581 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true
21:00:23.581 [main] DEBUG io.netty.util.internal.PlatformDependent0 - jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable prior to Java9
21:00:23.581 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.<init>(long, int): available
21:00:23.581 [main] DEBUG io.netty.util.internal.PlatformDependent - sun.misc.Unsafe: available
21:00:23.581 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.tmpdir: /tmp (java.io.tmpdir)
21:00:23.581 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model)
21:00:23.582 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: 1431830528 bytes
21:00:23.583 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1
21:00:23.584 [main] DEBUG io.netty.util.internal.CleanerJava6 - java.nio.ByteBuffer.cleaner(): available
21:00:23.584 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false
21:00:23.593 [main] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default LoopResources: DefaultLoopResources {prefix=reactor-http, daemon=true, selectCount=12, workerCount=12}
21:00:23.593 [main] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default ConnectionProvider: PooledConnectionProvider {name=http, poolFactory=reactor.netty.resources.ConnectionProvider$$Lambda$707/2086402598@32a395d2}
21:00:23.594 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientHttpConnector'
21:00:23.594 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactorClientHttpConnector' via factory method to bean named 'reactorClientResourceFactory'
21:00:23.618 [main] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv4Stack: false
21:00:23.618 [main] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv6Addresses: false
21:00:23.620 [main] DEBUG io.netty.util.NetUtil - Loopback interface: lo (lo, 127.0.0.1)
21:00:23.621 [main] DEBUG io.netty.util.NetUtil - /proc/sys/net/core/somaxconn: 128
21:00:23.656 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration'
21:00:23.657 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'clientConnectorCustomizer'
21:00:23.658 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'clientConnectorCustomizer' via factory method to bean named 'reactorClientHttpConnector'
21:00:23.659 [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:00:23.660 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'exchangeStrategiesCustomizer'
21:00:23.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'defaultCodecCustomizer'
21:00:23.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'jacksonCodecCustomizer'
21:00:23.663 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration'
21:00:23.732 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration'
21:00:23.734 [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:00:23.736 [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:00:23.758 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext [748523772] in cache under key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:23.758 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 0, missCount = 1]
21:00:23.788 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:23.788 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 1, missCount = 1]
21:00:23.794 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@4a6c0f38, testMethod = getConnectionByName@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:23.800 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:23.800 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 2, missCount = 1]
21:00:23.801 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:23.801 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 3, missCount = 1]
21:00:24.060 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.060 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 4, missCount = 1]
21:00:24.098 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.098 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 5, missCount = 1]
21:00:24.099 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.099 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 6, missCount = 1]
21:00:24.100 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.100 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 7, missCount = 1]
21:00:24.110 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.111 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 8, missCount = 1]
21:00:24.113 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.113 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 9, missCount = 1]
21:00:24.115 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.116 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 10, missCount = 1]
21:00:24.116 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@4a6c0f38, testMethod = getConnectionByName@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:24.128 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@6c8554c9, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:24.129 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.129 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 11, missCount = 1]
21:00:24.130 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.130 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 12, missCount = 1]
21:00:24.131 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@6c8554c9, testMethod = getConnectionsByMask@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:24.132 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.132 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 13, missCount = 1]
21:00:24.133 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.133 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 14, missCount = 1]
21:00:24.135 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.135 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 15, missCount = 1]
21:00:24.136 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.136 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 16, missCount = 1]
21:00:24.136 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.136 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 17, missCount = 1]
21:00:24.137 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.137 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 18, missCount = 1]
21:00:24.137 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.137 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 19, missCount = 1]
21:00:24.139 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.139 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 20, missCount = 1]
21:00:24.139 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.140 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 21, missCount = 1]
21:00:24.140 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@6c8554c9, testMethod = getConnectionsByMask@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:24.141 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@2db27181, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:24.142 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.142 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 22, missCount = 1]
21:00:24.143 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.143 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 23, missCount = 1]
21:00:24.144 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@2db27181, testMethod = getConnections@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:24.145 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.145 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 24, missCount = 1]
21:00:24.145 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.145 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 25, missCount = 1]
21:00:24.147 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.147 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 26, missCount = 1]
21:00:24.148 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.149 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 27, missCount = 1]
21:00:24.149 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.149 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 28, missCount = 1]
21:00:24.149 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.149 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 29, missCount = 1]
21:00:24.150 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.150 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 30, missCount = 1]
21:00:24.151 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.151 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 31, missCount = 1]
21:00:24.152 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.152 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 32, missCount = 1]
21:00:24.152 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest@2db27181, testMethod = getConnections@SimpleEndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:24.155 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [748523772] from cache with key [[MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:24.156 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 1, maxSize = 32, parentContextCount = 0, hitCount = 33, missCount = 1]
21:00:24.156 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@35eee641 testClass = SimpleEndpointListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@5729b410 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@64518270 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(exclude=[], excludeName=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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: 7.848 s - in com.github.mgramin.sqlboot.model.connection.SimpleEndpointListTest
[INFO] Running com.github.mgramin.sqlboot.model.dialect.DbDialectListTest
21:00:24.158 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:00:24.159 [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:00:24.159 [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:00:24.160 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to process context configuration [ContextConfigurationAttributes@35dae7e2 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:00:24.162 [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:00:24.162 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.dialect.DbDialectListTest]: using defaults.
21:00:24.162 [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:00:24.163 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@4e72f391, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@2c75e84a, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@21624da5, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@63faba7b, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3acd33ee, org.springframework.test.context.transaction.TransactionalTestExecutionListener@39f9bb45, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@a45d6ba, org.springframework.test.context.event.EventPublishingTestExecutionListener@3c5a8ceb, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@6f5b8acd, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@1b8c27f0, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@3fd8d23d, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@578d2cf9, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@64b3d927]
21:00:24.163 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
21:00:24.164 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@231e333f, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:24.165 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to load context from [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
21:00:24.165 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
21:00:24.165 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:00:24.169 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loading from YAML: class path resource [application.yml]
21:00:24.174 [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:00:24.174 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loaded 1 document from YAML resource: class path resource [application.yml]
21:00:24.187 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:00:24.187 [main] DEBUG org.springframework.test.context.support.AnnotationConfigContextLoader - Registering component classes: {class com.github.mgramin.sqlboot.model.dialect.DbDialectList}
21:00:24.191 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@6ba3235b
21:00:24.191 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
21:00:24.315 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:24.333 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:24.382 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:24.384 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean
21:00:24.604 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.context.ImportsContextCustomizer$ImportsCleanupPostProcessor'
21:00:24.612 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
21:00:24.613 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
21:00:24.614 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBeanDefinitionValidator'
21:00:24.639 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
21:00:24.640 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
21:00:24.640 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
21:00:24.643 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
21:00:24.645 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
21:00:24.645 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
21:00:24.645 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
21:00:24.646 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
21:00:24.646 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory'
21:00:24.647 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'methodValidationPostProcessor'
21:00:24.648 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
21:00:24.650 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceInitializerPostProcessor'
21:00:24.651 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
21:00:24.652 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
21:00:24.654 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
21:00:24.657 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
21:00:24.658 [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@6ba3235b'
21:00:24.658 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
21:00:24.659 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
21:00:24.661 [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:00:24.663 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource'
21:00:24.664 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor'
21:00:24.665 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
21:00:24.666 [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:00:24.666 [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:00:24.669 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbDialectList'
21:00:24.670 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class com.github.mgramin.sqlboot.model.dialect.DbDialectList$$EnhancerBySpringCGLIB$$43f869f2] - unable to determine constructor/method parameter names
21:00:24.690 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
21:00:24.690 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration'
21:00:24.691 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
21:00:24.692 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
21:00:24.692 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
21:00:24.697 [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@6ba3235b'
21:00:24.698 [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:00:24.701 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata'
21:00:24.702 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
21:00:24.703 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
21:00:24.703 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule'
21:00:24.710 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
21:00:24.711 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper'
21:00:24.713 [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@6ba3235b'
21:00:24.713 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
21:00:24.713 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule'
21:00:24.714 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
21:00:24.723 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
21:00:24.734 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$DefaultCodecsConfiguration'
21:00:24.734 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultCodecCustomizer'
21:00:24.735 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties'
21:00:24.738 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.codec-org.springframework.boot.autoconfigure.codec.CodecProperties'
21:00:24.740 [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:00:24.740 [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:00:24.740 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration'
21:00:24.741 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonCodecCustomizer'
21:00:24.742 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper'
21:00:24.742 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration'
21:00:24.745 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration'
21:00:24.746 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultValidator'
21:00:24.748 [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:00:24.748 [main] DEBUG org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL
21:00:24.750 [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:00:24.750 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator
21:00:24.750 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory
21:00:24.750 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1
21:00:24.750 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration.
21:00:24.750 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via user class loader
21:00:24.751 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL
21:00:24.751 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
21:00:24.752 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only.
21:00:24.759 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator.
21:00:24.760 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver.
21:00:24.760 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
21:00:24.760 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
21:00:24.760 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
21:00:24.763 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration'
21:00:24.764 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder'
21:00:24.765 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties'
21:00:24.767 [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:00:24.769 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastServerConfiguration'
21:00:24.769 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration'
21:00:24.770 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.hazelcast-org.springframework.boot.autoconfigure.hazelcast.HazelcastProperties'
21:00:24.771 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
21:00:24.772 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
21:00:24.773 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
21:00:24.781 [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:00:24.785 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.h2.Driver found in Thread context class loader sun.misc.Launcher$AppClassLoader@18b4aac2
21:00:24.800 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker'
21:00:24.800 [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:00:24.801 [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@6ba3235b'
21:00:24.802 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:24.803 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-2 - configuration:
21:00:24.804 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false
21:00:24.804 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true
21:00:24.804 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none
21:00:24.804 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none
21:00:24.804 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery.............none
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=<masked>}
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."org.h2.Driver"
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{}
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none
21:00:24.805 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................600000
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........0
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................1800000
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................10
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none
21:00:24.806 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................10
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - password........................<masked>
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-2"
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none
21:00:24.807 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal
21:00:24.808 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default
21:00:24.808 [main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"sa"
21:00:24.808 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000
21:00:24.808 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Starting...
21:00:24.809 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn10: url=jdbc:h2:mem:testdb user=SA
21:00:24.812 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Start completed.
21:00:24.812 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:24.812 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/schema.sql]
21:00:24.828 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema hr if exists cascade
21:00:24.828 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema hr
21:00:24.830 [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:00:24.831 [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:00:24.834 [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:00:24.836 [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:00:24.837 [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:00:24.838 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.jobs is 'all jobs'
21:00:24.839 [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:00:24.840 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.persons is 'all persons'
21:00:24.843 [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:00:24.847 [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:00:24.848 [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:00:24.849 [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:00:24.851 [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:00:24.853 [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:00:24.858 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema bookings if exists cascade
21:00:24.858 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema bookings
21:00:24.860 [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:00:24.861 [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:00:24.862 [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:00:24.863 [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:00:24.864 [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:00:24.864 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/schema.sql] in 52 ms.
21:00:24.866 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:24.866 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:24.866 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/data.sql]
21:00:24.868 [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:00:24.869 [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:00:24.870 [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:00:24.870 [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:00:24.870 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/data.sql] in 4 ms.
21:00:24.871 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
21:00:24.872 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
21:00:24.873 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
21:00:24.873 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$TomcatDataSourcePoolMetadataProviderConfiguration'
21:00:24.874 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatPoolDataSourceMetadataProvider'
21:00:24.875 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration'
21:00:24.875 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration'
21:00:24.876 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration'
21:00:24.877 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointAdaptersConfiguration'
21:00:24.877 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration$LegacyReactiveHealthEndpointCompatibilityConfiguration'
21:00:24.878 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthIndicatorRegistry'
21:00:24.879 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthContributorRegistry'
21:00:24.879 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.ReactiveHealthEndpointConfiguration'
21:00:24.881 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicator'
21:00:24.881 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration'
21:00:24.882 [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:00:24.884 [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:00:24.885 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pingHealthContributor'
21:00:24.885 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration'
21:00:24.887 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbHealthContributor'
21:00:24.887 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration'
21:00:24.888 [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:00:24.890 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource'
21:00:24.892 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointGroups'
21:00:24.893 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration'
21:00:24.894 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointProperties'
21:00:24.894 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration'
21:00:24.896 [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:00:24.898 [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:00:24.901 [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@6ba3235b'
21:00:24.901 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'healthEndpointProperties'
21:00:24.902 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusAggregator'
21:00:24.902 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'healthEndpointProperties'
21:00:24.904 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper'
21:00:24.905 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'healthEndpointProperties'
21:00:24.909 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator'
21:00:24.909 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'pingHealthContributor'
21:00:24.909 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'dbHealthContributor'
21:00:24.909 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:00:24.910 [HikariPool-2 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Pool stats (total=1, active=0, idle=1, waiting=0)
21:00:24.911 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'reactiveHealthContributorRegistry'
21:00:24.912 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.LegacyHealthEndpointCompatibilityConfiguration'
21:00:24.913 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthAggregator'
21:00:24.914 [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:00:24.914 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn11: url=jdbc:h2:mem:testdb user=SA
21:00:24.915 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthStatusHttpMapper'
21:00:24.915 [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:00:24.915 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn12: url=jdbc:h2:mem:testdb user=SA
21:00:24.916 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthIndicatorRegistry'
21:00:24.916 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn13: url=jdbc:h2:mem:testdb user=SA
21:00:24.917 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthContributorRegistry'
21:00:24.917 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn14: url=jdbc:h2:mem:testdb user=SA
21:00:24.917 [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@6ba3235b'
21:00:24.917 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups'
21:00:24.917 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn15: url=jdbc:h2:mem:testdb user=SA
21:00:24.918 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn16: url=jdbc:h2:mem:testdb user=SA
21:00:24.918 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthIndicatorRegistry' via factory method to bean named 'healthContributorRegistry'
21:00:24.919 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn17: url=jdbc:h2:mem:testdb user=SA
21:00:24.919 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpoint'
21:00:24.920 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn18: url=jdbc:h2:mem:testdb user=SA
21:00:24.920 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry'
21:00:24.920 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups'
21:00:24.920 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn19: url=jdbc:h2:mem:testdb user=SA
21:00:24.921 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - After adding stats (total=10, active=0, idle=10, waiting=0)
21:00:24.921 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration'
21:00:24.922 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties'
21:00:24.923 [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:00:24.924 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration'
21:00:24.925 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'envInfoContributor'
21:00:24.926 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'envInfoContributor' via factory method to bean named 'environment'
21:00:24.927 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties'
21:00:24.928 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration'
21:00:24.929 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'infoEndpoint'
21:00:24.931 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration'
21:00:24.931 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointOperationParameterMapper'
21:00:24.933 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor'
21:00:24.933 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment'
21:00:24.934 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
21:00:24.935 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'micrometerClock'
21:00:24.936 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesMeterFilter'
21:00:24.936 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
21:00:24.939 [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:00:24.942 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration'
21:00:24.943 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusConfig'
21:00:24.944 [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:00:24.945 [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:00:24.947 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusMeterRegistry'
21:00:24.948 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'collectorRegistry'
21:00:24.949 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'prometheusConfig'
21:00:24.949 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'collectorRegistry'
21:00:24.949 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'micrometerClock'
21:00:24.952 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
21:00:24.952 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration'
21:00:24.953 [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:00:24.956 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmGcMetrics'
21:00:24.957 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration'
21:00:24.959 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmMemoryMetrics'
21:00:24.960 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmThreadMetrics'
21:00:24.960 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'classLoaderMetrics'
21:00:24.961 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'logbackMetrics'
21:00:24.961 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration'
21:00:24.963 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'uptimeMetrics'
21:00:24.963 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration'
21:00:24.965 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'processorMetrics'
21:00:24.966 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileDescriptorMetrics'
21:00:24.977 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration'
21:00:24.978 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration'
21:00:24.979 [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:00:24.982 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration'
21:00:24.985 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration'
21:00:24.986 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration'
21:00:24.986 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gsonBuilder'
21:00:24.987 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardGsonBuilderCustomizer'
21:00:24.988 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties'
21:00:24.991 [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:00:24.993 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gsonBuilder' via factory method to bean named 'standardGsonBuilderCustomizer'
21:00:24.997 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gson'
21:00:24.997 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gson' via factory method to bean named 'gsonBuilder'
21:00:24.999 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration'
21:00:24.999 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter'
21:00:25.000 [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:00:25.001 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration'
21:00:25.002 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter'
21:00:25.002 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper'
21:00:25.005 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration'
21:00:25.006 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration'
21:00:25.006 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration'
21:00:25.007 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters'
21:00:25.017 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration'
21:00:25.017 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateBuilder'
21:00:25.019 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRestTemplateCustomizer'
21:00:25.019 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration'
21:00:25.020 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateExchangeTagsProvider'
21:00:25.021 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:00:25.021 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'restTemplateExchangeTagsProvider'
21:00:25.021 [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:00:25.023 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.WebClientMetricsConfiguration'
21:00:25.024 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultWebClientExchangeTagsProvider'
21:00:25.024 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsWebClientCustomizer'
21:00:25.025 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'prometheusMeterRegistry'
21:00:25.025 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'defaultWebClientExchangeTagsProvider'
21:00:25.025 [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:00:25.026 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration'
21:00:25.027 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration'
21:00:25.027 [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@1cfdfe73'
21:00:25.028 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration'
21:00:25.028 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration'
21:00:25.029 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration'
21:00:25.030 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration'
21:00:25.030 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcTemplate'
21:00:25.031 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties'
21:00:25.032 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource'
21:00:25.032 [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:00:25.038 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration'
21:00:25.039 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'namedParameterJdbcTemplate'
21:00:25.040 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate'
21:00:25.042 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration'
21:00:25.043 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration'
21:00:25.044 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder'
21:00:25.044 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties'
21:00:25.049 [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:00:25.050 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration'
21:00:25.050 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager'
21:00:25.051 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'dataSource'
21:00:25.051 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers'
21:00:25.051 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration'
21:00:25.053 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties'
21:00:25.056 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration'
21:00:25.057 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration'
21:00:25.058 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration'
21:00:25.058 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration'
21:00:25.059 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionTemplate'
21:00:25.059 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager'
21:00:25.061 [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:00:25.062 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientResourceFactory'
21:00:25.063 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientHttpConnector'
21:00:25.063 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactorClientHttpConnector' via factory method to bean named 'reactorClientResourceFactory'
21:00:25.064 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration'
21:00:25.065 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'clientConnectorCustomizer'
21:00:25.065 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'clientConnectorCustomizer' via factory method to bean named 'reactorClientHttpConnector'
21:00:25.066 [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:00:25.066 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'exchangeStrategiesCustomizer'
21:00:25.067 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'defaultCodecCustomizer'
21:00:25.067 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'jacksonCodecCustomizer'
21:00:25.068 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration'
21:00:25.071 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration'
21:00:25.071 [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:00:25.073 [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:00:25.085 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext [1805853531] in cache under key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.086 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 33, missCount = 2]
21:00:25.100 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.100 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 34, missCount = 2]
21:00:25.102 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@231e333f, testMethod = paginationQueryTemplate@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:25.102 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.102 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 35, missCount = 2]
21:00:25.103 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.103 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 36, missCount = 2]
21:00:25.105 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.105 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 37, missCount = 2]
21:00:25.106 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.106 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 38, missCount = 2]
21:00:25.106 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.106 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 39, missCount = 2]
21:00:25.107 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.107 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 40, missCount = 2]
21:00:25.107 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.107 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 41, missCount = 2]
21:00:25.109 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.109 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 42, missCount = 2]
21:00:25.110 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.110 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 43, missCount = 2]
21:00:25.110 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@231e333f, testMethod = paginationQueryTemplate@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:25.111 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@398f03f, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:25.112 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.115 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 44, missCount = 2]
21:00:25.116 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.116 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 45, missCount = 2]
21:00:25.117 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@398f03f, testMethod = dialect@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:25.117 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.117 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 46, missCount = 2]
21:00:25.118 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.118 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 47, missCount = 2]
21:00:25.119 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.119 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 48, missCount = 2]
21:00:25.130 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.130 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 49, missCount = 2]
21:00:25.130 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.130 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 50, missCount = 2]
21:00:25.131 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.131 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 51, missCount = 2]
21:00:25.131 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.131 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 52, missCount = 2]
21:00:25.132 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.132 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 53, missCount = 2]
21:00:25.133 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.133 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 54, missCount = 2]
21:00:25.134 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@398f03f, testMethod = dialect@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:25.134 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [1805853531] from cache with key [[MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.134 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 2, maxSize = 32, parentContextCount = 0, hitCount = 55, missCount = 2]
21:00:25.135 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@1e7ad1e6 testClass = DbDialectListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@674ab12e 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@591ea3da 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(exclude=[], excludeName=[]), @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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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.943 s - in com.github.mgramin.sqlboot.model.dialect.DbDialectListTest
[INFO] Running com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest
21:00:25.137 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:00:25.137 [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:00:25.138 [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:00:25.139 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@17013c40 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:00:25.142 [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:00:25.145 [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:00:25.145 [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:00:25.146 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@5d359ba8, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@11747be9, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@666a9929, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5ee29674, org.springframework.test.context.support.DirtiesContextTestExecutionListener@2ffbbedb, org.springframework.test.context.transaction.TransactionalTestExecutionListener@1d6223fe, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@2ff352aa, org.springframework.test.context.event.EventPublishingTestExecutionListener@65683016, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@17974706, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@1be6ebd9, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2e358c0d, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@a79f15d, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@277b2863]
21:00:25.146 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null].
21:00:25.147 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@4c8efc91, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:25.147 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
21:00:25.147 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
21:00:25.147 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles []
21:00:25.347 [main] DEBUG org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loaded 6 bean definitions from class path resource [test_config.xml]
21:00:25.348 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@32c8fd53
21:00:25.349 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
21:00:25.352 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor'
21:00:25.353 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
21:00:25.353 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
21:00:25.354 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
21:00:25.354 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
21:00:25.355 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor'
21:00:25.356 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
21:00:25.403 [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:00:25.404 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:25.404 [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:00:25.407 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from class path resource [db/sql/create-test-db.sql]
21:00:25.409 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema main_schema
21:00:25.411 [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:00:25.412 [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:00:25.413 [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:00:25.414 [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:00:25.417 [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:00:25.418 [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:00:25.419 [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:00:25.419 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from class path resource [db/sql/create-test-db.sql] in 11 ms.
21:00:25.419 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from class path resource [db/sql/init-test-data.sql]
21:00:25.421 [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:00:25.421 [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:00:25.422 [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:00:25.422 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from class path resource [db/sql/init-test-data.sql] in 3 ms.
21:00:25.425 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext [852032851] in cache under key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.425 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 55, missCount = 3]
21:00:25.441 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.442 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 56, missCount = 3]
21:00:25.443 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@4c8efc91, testMethod = readAllColumns@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:25.444 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.444 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 57, missCount = 3]
21:00:25.444 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.444 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 58, missCount = 3]
21:00:25.445 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:25.445 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 59, missCount = 3]
21:00:26.033 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery -
/* { "name": "column" } */
select table_schema
     , table_name
     , column_name
  from information_schema.columns
21:00:26.138 [parallel-1] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery - Thread[parallel-1,5,main]
21:00:26.140 [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:00:26.141 [parallel-1] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:27.000 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.000 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 60, missCount = 3]
21:00:27.001 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.001 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 61, missCount = 3]
21:00:27.001 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.002 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 62, missCount = 3]
21:00:27.002 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.002 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 63, missCount = 3]
21:00:27.003 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.003 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 64, missCount = 3]
21:00:27.003 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.003 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 65, missCount = 3]
21:00:27.003 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@4c8efc91, testMethod = readAllColumns@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.004 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7e8f1afa, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:27.004 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.005 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 66, missCount = 3]
21:00:27.005 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.005 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 67, missCount = 3]
21:00:27.006 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7e8f1afa, testMethod = aliases@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.006 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.006 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 68, missCount = 3]
21:00:27.007 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.007 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 69, missCount = 3]
21:00:27.007 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.007 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 70, missCount = 3]
21:00:27.009 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.009 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 71, missCount = 3]
21:00:27.010 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.010 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 72, missCount = 3]
21:00:27.010 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.010 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 73, missCount = 3]
21:00:27.010 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.010 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 74, missCount = 3]
21:00:27.011 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.011 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 75, missCount = 3]
21:00:27.012 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.012 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 76, missCount = 3]
21:00:27.012 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7e8f1afa, testMethod = aliases@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.013 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@210a2ba2, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:27.013 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.013 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 77, missCount = 3]
21:00:27.014 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.014 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 78, missCount = 3]
21:00:27.014 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@210a2ba2, testMethod = toJson@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.015 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.015 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 79, missCount = 3]
21:00:27.015 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.015 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 80, missCount = 3]
21:00:27.016 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.016 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 81, missCount = 3]
21:00:27.155 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.155 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 82, missCount = 3]
21:00:27.156 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.156 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 83, missCount = 3]
21:00:27.156 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.156 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 84, missCount = 3]
21:00:27.156 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.157 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 85, missCount = 3]
21:00:27.157 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.158 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 86, missCount = 3]
21:00:27.158 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.158 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 87, missCount = 3]
21:00:27.158 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@210a2ba2, testMethod = toJson@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.159 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@560a54fd, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:27.159 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.159 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 88, missCount = 3]
21:00:27.160 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.160 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 89, missCount = 3]
21:00:27.161 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@560a54fd, testMethod = metaData@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.161 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.161 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 90, missCount = 3]
21:00:27.162 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.162 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 91, missCount = 3]
21:00:27.162 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.163 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 92, missCount = 3]
21:00:27.312 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.312 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 93, missCount = 3]
21:00:27.312 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.312 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 94, missCount = 3]
21:00:27.313 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.313 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 95, missCount = 3]
21:00:27.313 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.313 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 96, missCount = 3]
21:00:27.314 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.314 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 97, missCount = 3]
21:00:27.314 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.314 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 98, missCount = 3]
21:00:27.315 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@560a54fd, testMethod = metaData@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.318 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7f4c1de2, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:27.318 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.318 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 99, missCount = 3]
21:00:27.319 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.319 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 100, missCount = 3]
21:00:27.320 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7f4c1de2, testMethod = name@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.320 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.320 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 101, missCount = 3]
21:00:27.320 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.320 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 102, missCount = 3]
21:00:27.321 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.322 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 103, missCount = 3]
21:00:27.323 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.323 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 104, missCount = 3]
21:00:27.323 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.323 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 105, missCount = 3]
21:00:27.324 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.324 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 106, missCount = 3]
21:00:27.324 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.324 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 107, missCount = 3]
21:00:27.325 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.325 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 108, missCount = 3]
21:00:27.325 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.325 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 109, missCount = 3]
21:00:27.325 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7f4c1de2, testMethod = name@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.326 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@8dcb560, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:27.326 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.326 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 110, missCount = 3]
21:00:27.327 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.327 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 111, missCount = 3]
21:00:27.328 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@8dcb560, testMethod = path@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.328 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.328 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 112, missCount = 3]
21:00:27.328 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.328 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 113, missCount = 3]
21:00:27.329 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.329 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 114, missCount = 3]
21:00:27.330 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.330 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 115, missCount = 3]
21:00:27.330 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.331 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 116, missCount = 3]
21:00:27.331 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.331 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 117, missCount = 3]
21:00:27.331 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.331 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 118, missCount = 3]
21:00:27.332 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.332 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 119, missCount = 3]
21:00:27.332 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.332 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 120, missCount = 3]
21:00:27.332 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@8dcb560, testMethod = path@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.335 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@79dc15e3, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]].
21:00:27.336 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.336 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 121, missCount = 3]
21:00:27.336 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.336 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 122, missCount = 3]
21:00:27.337 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@79dc15e3, testMethod = readAllTables@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.337 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.337 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 123, missCount = 3]
21:00:27.337 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.337 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 124, missCount = 3]
21:00:27.338 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.338 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 125, missCount = 3]
21:00:27.340 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery -
/* { "name": "table" } */
select table_schema
     , table_name
  from information_schema.tables
21:00:27.341 [parallel-2] INFO com.github.mgramin.sqlboot.sql.select.wrappers.ExecutableSelectQuery - Thread[parallel-2,5,main]
21:00:27.341 [parallel-2] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [/* { "name": "table" } */
select table_schema
     , table_name
  from information_schema.tables]
21:00:27.341 [parallel-2] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
21:00:27.522 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.522 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 126, missCount = 3]
21:00:27.522 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.522 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 127, missCount = 3]
21:00:27.522 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.522 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 128, missCount = 3]
21:00:27.523 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.523 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 129, missCount = 3]
21:00:27.524 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.524 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 130, missCount = 3]
21:00:27.524 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.524 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 131, missCount = 3]
21:00:27.524 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@79dc15e3, testMethod = readAllTables@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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:00:27.525 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext [852032851] from cache with key [[MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]
21:00:27.525 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@22a9cdbc size = 3, maxSize = 32, parentContextCount = 0, hitCount = 132, missCount = 3]
21:00:27.525 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@befa776 testClass = SqlResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@9b807e2 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, 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@3ab35b9c], 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.381 s - in com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest
[INFO] Running com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest
21:00:27.527 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate]
21:00:27.527 [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:00:27.529 [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:00:27.536 [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:00:27.537 [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:00:27.537 [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:00:27.537 [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:00:27.541 [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:00:27.555 [main] DEBUG org.springframework.boot.test.context.SpringBootTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest]: using defaults.
21:00:27.556 [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:00:27.558 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@b1e2277, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@14e17899, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@1c29f539, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@1c2345d4, org.springframework.test.context.support.DirtiesContextTestExecutionListener@6654d1bd, org.springframework.test.context.transaction.TransactionalTestExecutionListener@796e485e, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@2abdfa77, org.springframework.test.context.event.EventPublishingTestExecutionListener@2cb61711, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@6caff203, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@67887b70, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@22234bb4, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@3eb1de7e, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@2d1d1c41]
21:00:27.559 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@9eab169 testClass = ResourceTypeJsonSerializerTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@31ac350b 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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@63f2a7a4, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@2468bb6f, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3ab35b9c], 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:00:27.559 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@9eab169 testClass = ResourceTypeJsonSerializerTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest@1de4f6e, testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@31ac350b 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@45e6d1e0, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@494c8f29, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@63f2a7a4, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@2468bb6f, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@3ab35b9c], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> false]]].
21:00:27.582 [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:00:27.796  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:00:27.798  INFO 169 --- [           main] g.m.s.m.r.ResourceTypeJsonSerializerTest : No active profile set, falling back to default profiles: default
2019-12-03 21:00:28.922  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:00:29.369  INFO 169 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 0 (http)
2019-12-03 21:00:29.387  INFO 169 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2019-12-03 21:00:29.388  INFO 169 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.27]
2019-12-03 21:00:29.514  INFO 169 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2019-12-03 21:00:29.514  INFO 169 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1710 ms
2019-12-03 21:00:29.632  INFO 169 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Starting...
2019-12-03 21:00:29.634  INFO 169 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Start completed.
2019-12-03 21:00:30.596  INFO 169 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2019-12-03 21:00:31.133  INFO 169 --- [           main] o.s.b.a.e.web.EndpointLinksResolver      : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-12-03 21:00:31.273  INFO 169 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 43539 (http) with context path ''
2019-12-03 21:00:31.276  INFO 169 --- [           main] g.m.s.m.r.ResourceTypeJsonSerializerTest : Started ResourceTypeJsonSerializerTest in 3.69 seconds (JVM running for 16.937)
[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 3.842 s <<< FAILURE! - in com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest
[ERROR] serialize  Time elapsed: 0.042 s  <<< ERROR!
com.fasterxml.jackson.core.JsonGenerationException: No native support for writing embedded objects of type com.google.gson.JsonObject
        at com.github.mgramin.sqlboot.model.resourcetype.ResourceTypeJsonSerializerTest.serialize(ResourceTypeJsonSerializerTest.kt:23)

[INFO] Running com.github.mgramin.sqlboot.model.resourcetype.wrappers.ResourceTypeWrapperTest
2019-12-03 21:00:31.660  INFO 169 --- [           main] c.h.config.AbstractConfigLocator         : Loading 'hazelcast-default.xml' from the classpath.
2019-12-03 21:00:32.126  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:00:32.140  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:00:32.186  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:00:32.187  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:00:32.808  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:00:34.219  INFO 169 --- [           main] com.hazelcast.instance.Node              : [172.17.0.6]:5701 [dev] [3.12.4] Creating MulticastJoiner
2019-12-03 21:00:34.673  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:00:34.679  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:00:34.690  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:00:37.621  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 - f8a43fc2-c8c5-4461-b5d0-0d3ef532403f this
]

2019-12-03 21:00:37.677  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:00:37.690  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:00:37.727  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.498 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.001 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.001 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.038 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.191 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.001 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.061 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 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.003 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.035 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.012 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.066 s - in com.github.mgramin.sqlboot.sql.select.wrappers.PaginatedSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.FilteredSelectQueryTest
2019-12-03 21:00:38.350  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:00:38.351  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@3e1aefee, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@521acf71, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@84435a9, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1e09c68c, org.springframework.test.context.support.DirtiesContextTestExecutionListener@77852f3c, org.springframework.test.context.transaction.TransactionalTestExecutionListener@73e007fa, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5aa09d52, org.springframework.test.context.event.EventPublishingTestExecutionListener@a4d1d2c, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@54ef2f96, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@27432d26, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@79d76e91, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@1b11a8fa, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@36afb791]
2019-12-03 21:00:38.387  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.052 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.004 s - in com.github.mgramin.sqlboot.sql.select.wrappers.CustomFilteredSelectQueryTest
[INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest
2019-12-03 21:00:38.413  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:00:38.413  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@2d8821d4, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@4c085cf8, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@7ec9ff9e, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@24431fd2, org.springframework.test.context.support.DirtiesContextTestExecutionListener@48290c0f, org.springframework.test.context.transaction.TransactionalTestExecutionListener@46c8766e, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@77cc4426, org.springframework.test.context.event.EventPublishingTestExecutionListener@4bcd7882, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@4b845c80, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@4efa3898, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@5b02b815, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@7babc29f, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@1222f136]
2019-12-03 21:00:38.426  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.025 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:00:38.442  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:00:38.442  INFO 169 --- [           main] o.s.t.c.s.DefaultTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@171c0e89, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@2e253ac6, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@7ae8f346, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@7972606c, org.springframework.test.context.support.DirtiesContextTestExecutionListener@eed418d, org.springframework.test.context.transaction.TransactionalTestExecutionListener@999a99c, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@3456192a, org.springframework.test.context.event.EventPublishingTestExecutionListener@5ecd7ecc, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@3ac8bdb1, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@7ed9363d, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@7a42ef85, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@4f4cc51f, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@3096dc72]
2019-12-03 21:00:38.453  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:00:38.454  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.029 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.005 s - in com.github.mgramin.sqlboot.sql.select.wrappers.TemplatedSelectQueryTest
2019-12-03 21:00:38.508  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:00:38.616  INFO 169 --- [extShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor  : Shutting down ExecutorService 'applicationTaskExecutor'
2019-12-03 21:00:38.617  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Shutdown initiated...
2019-12-03 21:00:38.620  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-2 - Shutdown initiated...
2019-12-03 21:00:38.620  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown initiated...
2019-12-03 21:00:38.643  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Shutdown completed.
2019-12-03 21:00:38.643  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-3 - Shutdown completed.
2019-12-03 21:00:38.644  INFO 169 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource       : HikariPool-2 - Shutdown completed.
[INFO]
[INFO] Results:
[INFO]
[ERROR] Errors:
[ERROR]   ResourceTypeJsonSerializerTest.serialize:23 ? JsonGeneration No native support...
[INFO]
[ERROR] Tests run: 169, Failures: 0, Errors: 1, Skipped: 0
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:05 min
[INFO] Finished at: 2019-12-03T21:00:39+00:00
[INFO] Final Memory: 111M/653M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project sql-boot: There are test failures.
[ERROR]
[ERROR] Please refer to /home/r/repo/target/surefire-reports for the individual test results.
[ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
container cce711ca2ca5b4d0258cf2ae9ceeb4d289d0a56cbf49ef27278f43cb89f258bf is dead
Tue Dec  3 22:01:16 CET 2019